[geany/geany-plugins] 8288f6: Merge pull request #175 from b4n/geanyctags/fixes

Jiří Techet git-noreply at xxxxx
Sat Nov 8 19:48:48 UTC 2014


Branch:      refs/heads/master
Author:      Jiří Techet <techet at gmail.com>
Committer:   Jiří Techet <techet at gmail.com>
Date:        Sat, 08 Nov 2014 19:48:48 UTC
Commit:      8288f63a13f06b834ba7740714a02aa90239431d
             https://github.com/geany/geany-plugins/commit/8288f63a13f06b834ba7740714a02aa90239431d

Log Message:
-----------
Merge pull request #175 from b4n/geanyctags/fixes

geanyctags: Don't implicitly convert pointer to boolean


Modified Paths:
--------------
    geanyctags/src/geanyctags.c

Modified: geanyctags/src/geanyctags.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -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)



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Plugins-Commits mailing list