SF.net SVN: geany-plugins:[258] trunk/spellcheck/src/gui.c

eht16 at users.sourceforge.net eht16 at xxxxx
Wed Oct 29 19:00:27 UTC 2008


Revision: 258
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=258&view=rev
Author:   eht16
Date:     2008-10-29 19:00:27 +0000 (Wed, 29 Oct 2008)

Log Message:
-----------
Fix typo, oops.

Modified Paths:
--------------
    trunk/spellcheck/src/gui.c

Modified: trunk/spellcheck/src/gui.c
===================================================================
--- trunk/spellcheck/src/gui.c	2008-10-29 18:56:41 UTC (rev 257)
+++ trunk/spellcheck/src/gui.c	2008-10-29 19:00:27 UTC (rev 258)
@@ -261,14 +261,14 @@
 		gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menu_item), image);
 		gtk_container_add(GTK_CONTAINER(sc->edit_menu_sub), menu_item);
 		g_signal_connect((gpointer) menu_item, "activate",
-			G_CALLBACK(on_menu_addword_item_activate), GPOINTER_TO_INT(0));
+			G_CALLBACK(on_menu_addword_item_activate), GINT_TO_POINTER(0));
 
 		image = gtk_image_new_from_stock(GTK_STOCK_REMOVE, GTK_ICON_SIZE_MENU);
 		menu_item = gtk_image_menu_item_new_with_label(_("Ignore All"));
 		gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menu_item), image);
 		gtk_container_add(GTK_CONTAINER(sc->edit_menu_sub), menu_item);
 		g_signal_connect((gpointer) menu_item, "activate",
-			G_CALLBACK(on_menu_addword_item_activate), GPOINTER_TO_INT(1));
+			G_CALLBACK(on_menu_addword_item_activate), GINT_TO_POINTER(1));
 
 		gtk_widget_show(sc->edit_menu);
 		gtk_widget_show(sc->edit_menu_sep);


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