Skip to content

Commit

Permalink
Merge pull request #367 from b4n/tableconvert/less-deprecated
Browse files Browse the repository at this point in the history
tableconvert: Drop use of the most obvious deprecated Geany API
  • Loading branch information
frlan committed Feb 21, 2016
2 parents 79fc1fa + 19ccd0b commit 8bf6193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tableconvert/src/tableconvert_ui.c
Expand Up @@ -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);
Expand Down

0 comments on commit 8bf6193

Please sign in to comment.