SF.net SVN: geany: [2680] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Wed Jun 11 16:41:36 UTC 2008


Revision: 2680
          http://geany.svn.sourceforge.net/geany/?rev=2680&view=rev
Author:   eht16
Date:     2008-06-11 09:41:11 -0700 (Wed, 11 Jun 2008)

Log Message:
-----------
Fix wrong marshal type (pointer != int).

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-06-11 16:37:18 UTC (rev 2679)
+++ trunk/ChangeLog	2008-06-11 16:41:11 UTC (rev 2680)
@@ -2,6 +2,8 @@
 
  * tagmanager/python.c:
    Use proper quoted multi-line string check from CTags SVN.
+ * src/geanyobject.c:
+   Fix wrong marshal type (pointer != int).
 
 
 2008-06-10  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/src/geanyobject.c
===================================================================
--- trunk/src/geanyobject.c	2008-06-11 16:37:18 UTC (rev 2679)
+++ trunk/src/geanyobject.c	2008-06-11 16:41:11 UTC (rev 2680)
@@ -113,7 +113,7 @@
 		G_SIGNAL_RUN_FIRST,
 		G_STRUCT_OFFSET (GeanyObjectClass, document_activate),
 		NULL, NULL,
-		gtk_marshal_NONE__INT,
+		gtk_marshal_NONE__POINTER,
 		G_TYPE_NONE, 1,
 		G_TYPE_INT);
 
@@ -123,7 +123,7 @@
 		G_SIGNAL_RUN_FIRST,
 		G_STRUCT_OFFSET (GeanyObjectClass, project_open),
 		NULL, NULL,
-		gtk_marshal_NONE__INT,
+		gtk_marshal_NONE__POINTER,
 		G_TYPE_NONE, 1,
 		G_TYPE_POINTER);
 	geany_object_signals[GCB_PROJECT_SAVE] = g_signal_new (


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



More information about the Commits mailing list