Revision: 593 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=593&view=rev Author: eht16 Date: 2009-04-17 13:38:19 +0000 (Fri, 17 Apr 2009)
Log Message: ----------- Rename sc_gui_toolbar_update().
Modified Paths: -------------- trunk/spellcheck/src/gui.c trunk/spellcheck/src/gui.h trunk/spellcheck/src/scplugin.c
Modified: trunk/spellcheck/src/gui.c =================================================================== --- trunk/spellcheck/src/gui.c 2009-04-17 13:28:06 UTC (rev 592) +++ trunk/spellcheck/src/gui.c 2009-04-17 13:38:19 UTC (rev 593) @@ -96,7 +96,7 @@ }
-void sc_gui_toolbar_update(void) +void sc_gui_update_toolbar(void) { /* toolbar item is not requested, so remove the item if it exists */ if (! sc_info->show_toolbar_item) @@ -460,7 +460,7 @@
print_typing_changed_message();
- sc_gui_toolbar_update(); + sc_gui_update_toolbar(); }
Modified: trunk/spellcheck/src/gui.h =================================================================== --- trunk/spellcheck/src/gui.h 2009-04-17 13:28:06 UTC (rev 592) +++ trunk/spellcheck/src/gui.h 2009-04-17 13:38:19 UTC (rev 593) @@ -46,7 +46,7 @@ void sc_gui_update_editor_menu_cb(GObject *obj, const gchar *word, gint pos, GeanyDocument *doc, gpointer user_data);
-void sc_gui_toolbar_update(void); +void sc_gui_update_toolbar(void);
void sc_gui_update_menu(void);
Modified: trunk/spellcheck/src/scplugin.c =================================================================== --- trunk/spellcheck/src/scplugin.c 2009-04-17 13:28:06 UTC (rev 592) +++ trunk/spellcheck/src/scplugin.c 2009-04-17 13:38:19 UTC (rev 593) @@ -135,7 +135,7 @@ g_key_file_set_boolean(config, "spellcheck", "use_msgwin", sc_info->use_msgwin); g_key_file_set_boolean(config, "spellcheck", "show_toolbar_item", sc_info->show_toolbar_item);
- sc_gui_toolbar_update(); + sc_gui_update_toolbar(); sc_gui_update_menu();
if (! g_file_test(config_dir, G_FILE_TEST_IS_DIR) && utils_mkdir(config_dir, TRUE) != 0) @@ -183,7 +183,7 @@ sc_info->menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SPELL_CHECK, NULL); ui_add_document_sensitive(sc_info->menu_item);
- sc_gui_toolbar_update(); + sc_gui_update_toolbar();
sc_gui_init(); sc_speller_init();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.