SF.net SVN: geany-plugins:[951] trunk/geany-plugins/geanylua

ntrel at users.sourceforge.net ntrel at xxxxx
Thu Sep 24 16:56:29 UTC 2009


Revision: 951
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=951&view=rev
Author:   ntrel
Date:     2009-09-24 16:56:29 +0000 (Thu, 24 Sep 2009)

Log Message:
-----------
Use new plugin_configure_single() instead of using
plugin_configure() wrongly.

Modified Paths:
--------------
    trunk/geany-plugins/geanylua/ChangeLog
    trunk/geany-plugins/geanylua/geanylua.c

Modified: trunk/geany-plugins/geanylua/ChangeLog
===================================================================
--- trunk/geany-plugins/geanylua/ChangeLog	2009-09-24 12:35:35 UTC (rev 950)
+++ trunk/geany-plugins/geanylua/ChangeLog	2009-09-24 16:56:29 UTC (rev 951)
@@ -1,3 +1,7 @@
+September 24, 2009 (ntrel)
+  Use new plugin_configure_single() instead of using
+  plugin_configure() wrongly.
+
 September 16, 2009 (ntrel)
   Fix possible memory leak; use keybindings_set_item() so we don't
   leave Geany to free our memory (bad practice).

Modified: trunk/geany-plugins/geanylua/geanylua.c
===================================================================
--- trunk/geany-plugins/geanylua/geanylua.c	2009-09-24 12:35:35 UTC (rev 950)
+++ trunk/geany-plugins/geanylua/geanylua.c	2009-09-24 16:56:29 UTC (rev 951)
@@ -221,10 +221,10 @@
 
 
 PLUGIN_EXPORT
-GtkWidget *plugin_configure(G_GNUC_UNUSED GtkDialog *dialog)
+GtkWidget *plugin_configure_single(GtkWidget *parent)
 {
 	if (glspi_configure) {
-		glspi_configure(geany->main_widgets->window);
+		glspi_configure(parent);
 	} else {
 		dialogs_show_msgbox(GTK_MESSAGE_ERROR,
 			_("The %s plugin failed to load properly.\n"


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