Skip to content

Commit

Permalink
geanyctags: Don't implicitly convert pointer to boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
b4n committed Oct 22, 2014
1 parent 90b4429 commit 6b96b5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geanyctags/src/geanyctags.c
Expand Up @@ -657,7 +657,7 @@ void plugin_init(G_GNUC_UNUSED GeanyData * data)
keybindings_set_item(key_group, KB_FIND_TAG, NULL,
0, 0, "find_tag", _("Find tag"), s_ft_item);

set_widgets_sensitive(geany_data->app->project);
set_widgets_sensitive(geany_data->app->project != NULL);
}

void plugin_cleanup(void)
Expand Down

0 comments on commit 6b96b5b

Please sign in to comment.