org.guifications.plugins: 232beaafd5167eab34b46ed62f7e441d0fd43298

grim at guifications.org grim at guifications.org
Fri Apr 4 22:15:12 CDT 2008


-----------------------------------------------------------------
Revision: 232beaafd5167eab34b46ed62f7e441d0fd43298
Ancestor: 2ab81f086633aa97bc8665065fb00eb5e6c38d5e
Author: grim at guifications.org
Date: 2008-04-05T02:17:58
Branch: org.guifications.plugins

Modified files:
        manualsize/manualsize.c

ChangeLog: 

fixed the two compiler warnings


-----------------------------------------------------------------
This revision's diffstat output:
 manualsize.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
-------------- next part --------------
============================================================
--- manualsize/manualsize.c	752b18d66ee456efb47765ec510009ed8bb03891
+++ manualsize/manualsize.c	21b214c714685a7a056ac0cf94a025c0633592a1
@@ -101,8 +101,10 @@ connect_notebook_handler(GtkNotebook * n
 connect_notebook_handler(GtkNotebook * notebook) {
 	GList * item = g_list_find( books_connected, notebook );
 	if (!item) {
-		g_signal_connect_after( notebook, "page-added", on_page_add, NULL );
-		g_signal_connect_after( notebook, "page-removed", on_page_remove, NULL );
+		g_signal_connect_after(notebook, "page-added",
+		                       G_CALLBACK(on_page_add), NULL);
+		g_signal_connect_after(notebook, "page-removed",
+		                       G_CALLBACK(on_page_remove), NULL);
 		books_connected = g_list_append( books_connected, notebook );
 		printf("Added!\n");
 	}


More information about the Plugins-commits mailing list