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

ntrel at users.sourceforge.net ntrel at xxxxx
Thu Sep 11 15:34:48 UTC 2008


Revision: 173
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=173&view=rev
Author:   ntrel
Date:     2008-09-11 15:34:47 +0000 (Thu, 11 Sep 2008)

Log Message:
-----------
Fix wrong argument for "project-close" signal.

Modified Paths:
--------------
    trunk/geanylua/ChangeLog
    trunk/geanylua/glspi_init.c

Modified: trunk/geanylua/ChangeLog
===================================================================
--- trunk/geanylua/ChangeLog	2008-09-08 18:48:49 UTC (rev 172)
+++ trunk/geanylua/ChangeLog	2008-09-11 15:34:47 UTC (rev 173)
@@ -1,3 +1,6 @@
+September 11, 2008 (ntrel)
+  Fix wrong argument for "project-close" signal.
+
 August 8, 2008 (ntrel)
   Fix to work with Geany API v86.
 

Modified: trunk/geanylua/glspi_init.c
===================================================================
--- trunk/geanylua/glspi_init.c	2008-09-08 18:48:49 UTC (rev 172)
+++ trunk/geanylua/glspi_init.c	2008-09-11 15:34:47 UTC (rev 173)
@@ -250,10 +250,10 @@
 
 
 
-static void on_proj_close(GObject *obj, GKeyFile *config, gpointer user_data)
+static void on_proj_close(GObject *obj, gpointer user_data)
 {
 	if (g_file_test(local_data.on_proj_closed_script,G_FILE_TEST_IS_REGULAR)) {
-		glspi_run_script(local_data.on_proj_closed_script,0,config, SD);
+		glspi_run_script(local_data.on_proj_closed_script,0, NULL, SD);
 	}
 }
 


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