SF.net SVN: geany-plugins:[916] trunk/geany-plugins/geanygdb/src/ gdb-ui-main.c

dmaphy at users.sourceforge.net dmaphy at xxxxx
Wed Sep 2 21:37:20 UTC 2009


Revision: 916
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=916&view=rev
Author:   dmaphy
Date:     2009-09-02 21:37:20 +0000 (Wed, 02 Sep 2009)

Log Message:
-----------
fix compilation error (sorry!)

Modified Paths:
--------------
    trunk/geany-plugins/geanygdb/src/gdb-ui-main.c

Modified: trunk/geany-plugins/geanygdb/src/gdb-ui-main.c
===================================================================
--- trunk/geany-plugins/geanygdb/src/gdb-ui-main.c	2009-09-02 21:23:27 UTC (rev 915)
+++ trunk/geany-plugins/geanygdb/src/gdb-ui-main.c	2009-09-02 21:37:20 UTC (rev 916)
@@ -395,24 +395,24 @@
 
 	if (cb)
 	{
-		g_signal_connect(G_OBJECT(btn), "clicked", G_CALLBACK(cb), NULL);
+		g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(cb), NULL);
 	}
 
 
 	if (tip)
 	{
-		gdbui_set_tip(btn, tip);
+		gdbui_set_tip(button, tip);
 	}
 
 
 	if (img && gdbui_setup.options.show_icons)
 	{
-		gtk_button_set_image(GTK_BUTTON(btn),
+		gtk_button_set_image(GTK_BUTTON(button),
 				     gtk_image_new_from_stock(img, GTK_ICON_SIZE_BUTTON));
 	}
 
 
-	return btn;
+	return button;
 }
 
 


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