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

frlan at users.sourceforge.net frlan at xxxxx
Tue Jan 20 00:15:50 UTC 2009


Revision: 389
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=389&view=rev
Author:   frlan
Date:     2009-01-20 00:15:50 +0000 (Tue, 20 Jan 2009)

Log Message:
-----------
GeanySendMail: Using /* */ instead of //

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

Modified: trunk/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geanysendmail/src/geanysendmail.c	2009-01-20 00:15:12 UTC (rev 388)
+++ trunk/geanysendmail/src/geanysendmail.c	2009-01-20 00:15:50 UTC (rev 389)
@@ -144,7 +144,7 @@
  				}
  				else
  				{
- 					// write config to file
+ 					/* write config to file */
  					data = g_key_file_to_data(config, NULL, NULL);
  					utils_write_file(config_file, data);
 					g_free(data);
@@ -298,7 +298,7 @@
 		}
 		else
 		{
-			// write config to file
+			/* write config to file */
 			gchar *data = g_key_file_to_data(config, NULL, NULL);
 			utils_write_file(config_file, data);
 			g_free(data);
@@ -383,7 +383,7 @@
 	config_file = g_strconcat(geany->app->configdir, G_DIR_SEPARATOR_S, "plugins", G_DIR_SEPARATOR_S,
 		"geanysendmail", G_DIR_SEPARATOR_S, "mail.conf", NULL);
 
-	// Initialising options from config file
+	/* Initialising options from config file */
 	g_key_file_load_from_file(config, config_file, G_KEY_FILE_NONE, NULL);
 	mailer = g_key_file_get_string(config, "tools", "mailer", NULL);
 	address = g_key_file_get_string(config, "tools", "address", NULL);
@@ -400,7 +400,7 @@
 		show_icon();
 	}
 
-	// Build up menu entry
+	/* Build up menu entry */
 	menu_mail = gtk_menu_item_new_with_mnemonic(_("_Mail document"));
 	gtk_container_add(GTK_CONTAINER(geany->main_widgets->tools_menu), menu_mail);
 	gtk_tooltips_set_tip(tooltips, menu_mail,


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