SF.net SVN: geany-plugins:[185] trunk/geanysendmail/src/geanysendmail.c

frlan at users.sourceforge.net frlan at xxxxx
Fri Sep 26 19:23:11 UTC 2008


Revision: 185
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=185&view=rev
Author:   frlan
Date:     2008-09-26 19:23:10 +0000 (Fri, 26 Sep 2008)

Log Message:
-----------
GeanySendMail: Removed some compiler warnings

Modified Paths:
--------------
    trunk/geanysendmail/src/geanysendmail.c

Modified: trunk/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geanysendmail/src/geanysendmail.c	2008-09-26 19:18:16 UTC (rev 184)
+++ trunk/geanysendmail/src/geanysendmail.c	2008-09-26 19:23:10 UTC (rev 185)
@@ -132,6 +132,8 @@
 			
 			if (use_address_dialog == TRUE)
 			{
+				gint tmp;
+				
  				dialog = gtk_dialog_new_with_buttons(_("Recipient's Address"),
  					GTK_WINDOW(geany->main_widgets->window), GTK_DIALOG_DESTROY_WITH_PARENT,
  					GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, NULL);
@@ -151,7 +153,7 @@
  				gtk_container_add(GTK_CONTAINER(vbox), entry);
  				gtk_widget_show(vbox);
 			
- 				gint tmp = gtk_dialog_run(GTK_DIALOG(dialog));
+ 				tmp = gtk_dialog_run(GTK_DIALOG(dialog));
 			
  				if (tmp == GTK_RESPONSE_ACCEPT)
  				{
@@ -338,8 +340,6 @@
 GtkWidget *plugin_configure(GtkDialog *dialog)
 {
 	GtkWidget	*label1, *label2, *vbox;
-	GtkWidget	*address_option = NULL;
-	gint 		tmp;
 	GtkTooltips *tooltip = NULL;
 
 	tooltip = gtk_tooltips_new();


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