Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sat, 20 Feb 2016 21:55:04 UTC Commit: 19ccd0baa7d0b4cc661cc160a5631d0ee23cedb0 https://github.com/geany/geany-plugins/commit/19ccd0baa7d0b4cc661cc160a5631d...
Log Message: ----------- tableconvert: Drop use of the most obvious deprecated Geany API
Modified Paths: -------------- tableconvert/src/tableconvert_ui.c
Modified: tableconvert/src/tableconvert_ui.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -39,7 +39,7 @@ void init_menuentries(void) /* Build up menu entry for table_convert based on global file type*/ main_menu_item = gtk_menu_item_new_with_mnemonic(_("_Convert to table")); gtk_container_add(GTK_CONTAINER(geany->main_widgets->tools_menu), main_menu_item); - ui_widget_set_tooltip_text(main_menu_item, + gtk_widget_set_tooltip_text(main_menu_item, _("Converts current marked list to a table.")); g_signal_connect(G_OBJECT(main_menu_item), "activate", G_CALLBACK(cb_table_convert), NULL); gtk_widget_show_all(main_menu_item);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org