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

frlan at users.sourceforge.net frlan at xxxxx
Sun Jun 27 12:00:18 UTC 2010


Revision: 1471
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1471&view=rev
Author:   frlan
Date:     2010-06-27 12:00:18 +0000 (Sun, 27 Jun 2010)

Log Message:
-----------
GeanySendMail: Mark a couple of functions static as we will only use them locally

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

Modified: trunk/geany-plugins/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geany-plugins/geanysendmail/src/geanysendmail.c	2010-06-27 11:31:50 UTC (rev 1470)
+++ trunk/geany-plugins/geanysendmail/src/geanysendmail.c	2010-06-27 12:00:18 UTC (rev 1471)
@@ -241,7 +241,7 @@
 }
 
 
-void show_icon()
+static void show_icon()
 {
 	mailbutton = GTK_WIDGET(gtk_tool_button_new_from_stock(GEANYSENDMAIL_STOCK_MAIL));
 	plugin_add_toolbar_item(geany_plugin, GTK_TOOL_ITEM(mailbutton));
@@ -253,7 +253,7 @@
 	gtk_widget_show_all (mailbutton);
 }
 
-void cleanup_icon()
+static void cleanup_icon()
 {
 	if (mailbutton != NULL)
 	{


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