Revision: 1106 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1106&view=re... Author: frlan Date: 2010-01-03 21:51:05 +0000 (Sun, 03 Jan 2010)
Log Message: ----------- Rename ht_editor_notify() function to on_editor_notify()
Modified Paths: -------------- trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/src/geanylatex.c =================================================================== --- trunk/geanylatex/src/geanylatex.c 2010-01-03 21:50:42 UTC (rev 1105) +++ trunk/geanylatex/src/geanylatex.c 2010-01-03 21:51:05 UTC (rev 1106) @@ -294,7 +294,7 @@ }
-static gboolean ht_editor_notify_cb(G_GNUC_UNUSED GObject *object, GeanyEditor *editor, +static gboolean on_editor_notify(G_GNUC_UNUSED GObject *object, GeanyEditor *editor, SCNotification *nt, G_GNUC_UNUSED gpointer data) { g_return_val_if_fail(editor != NULL, FALSE); @@ -390,7 +390,7 @@
PluginCallback plugin_callbacks[] = { - { "editor-notify", (GCallback) &ht_editor_notify_cb, FALSE, NULL }, + { "editor-notify", (GCallback) &on_editor_notify, FALSE, NULL }, { "document-activate", (GCallback) &on_document_activate, FALSE, NULL }, { "document-filetype-set", (GCallback) &on_document_filetype_set, FALSE, NULL }, { "document-open", (GCallback) &on_document_open, FALSE, NULL },
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
plugins-commits@lists.geany.org