SF.net SVN: geany-plugins: [104] trunk/spellcheck

eht16 at users.sourceforge.net eht16 at xxxxx
Sat Jul 5 09:40:09 UTC 2008


Revision: 104
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=104&view=rev
Author:   eht16
Date:     2008-07-05 02:40:09 -0700 (Sat, 05 Jul 2008)

Log Message:
-----------
Rename signal "populate-edit-menu" into "update-editor-menu".

Modified Paths:
--------------
    trunk/spellcheck/ChangeLog
    trunk/spellcheck/src/spellcheck.c

Modified: trunk/spellcheck/ChangeLog
===================================================================
--- trunk/spellcheck/ChangeLog	2008-07-05 09:25:25 UTC (rev 103)
+++ trunk/spellcheck/ChangeLog	2008-07-05 09:40:09 UTC (rev 104)
@@ -5,6 +5,7 @@
    Don't act on key release events when the input focus is not in the
    editor widget.
    Fix showing an empty Spellcheck menu item in the editor popup menu.
+   Rename signal "populate-edit-menu" into "update-editor-menu".
 
 
 2008-07-03  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/spellcheck/src/spellcheck.c
===================================================================
--- trunk/spellcheck/src/spellcheck.c	2008-07-05 09:25:25 UTC (rev 103)
+++ trunk/spellcheck/src/spellcheck.c	2008-07-05 09:40:09 UTC (rev 104)
@@ -54,7 +54,7 @@
 GeanyFunctions	*geany_functions;
 
 
-PLUGIN_VERSION_CHECK(72)
+PLUGIN_VERSION_CHECK(74)
 PLUGIN_SET_INFO(_("Spell Check"), _("Checks the spelling of the current document."), "0.2",
 			_("The Geany developer team"))
 
@@ -89,7 +89,7 @@
 static SpellClickInfo clickinfo;
 
 
-static void on_populate_edit_menu(GObject *obj, const gchar *word, gint pos,
+static void on_update_editor_menu(GObject *obj, const gchar *word, gint pos,
 								  GeanyDocument *doc, gpointer user_data);
 
 /* Keybinding(s) */
@@ -104,7 +104,7 @@
 
 PluginCallback plugin_callbacks[] =
 {
-    { "populate-edit-menu", (GCallback) &on_populate_edit_menu, FALSE, NULL },
+    { "update-editor-menu", (GCallback) &on_update_editor_menu, FALSE, NULL },
     { NULL, NULL, FALSE, NULL }
 };
 
@@ -201,7 +201,7 @@
 }
 
 
-static void on_populate_edit_menu(GObject *obj, const gchar *word, gint pos,
+static void on_update_editor_menu(GObject *obj, const gchar *word, gint pos,
 								  GeanyDocument *doc, gpointer user_data)
 {
 	gsize n_suggs, i;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list