[geany/geany-plugins] 62071e: GProject: Don't use C99 comments

Frank Lanitz git-noreply at xxxxx
Tue Jun 19 20:47:24 UTC 2012


Branch:      refs/heads/master
Author:      Frank Lanitz <frank at frank.uvena.de>
Committer:   Frank Lanitz <frank at frank.uvena.de>
Date:        Tue, 19 Jun 2012 20:47:24
Commit:      62071efa77493f3eaaeafcacd56e38838e23cebe
             https://github.com/geany/geany-plugins/commit/62071efa77493f3eaaeafcacd56e38838e23cebe

Log Message:
-----------
GProject: Don't use C99 comments


Modified Paths:
--------------
    gproject/src/gproject-main.c
    gproject/src/gproject-project.c
    gproject/src/gproject-sidebar.c

Modified: gproject/src/gproject-main.c
7 files changed, 4 insertions(+), 3 deletions(-)
===================================================================
@@ -55,7 +55,7 @@ static void on_doc_open(G_GNUC_UNUSED GObject * obj, G_GNUC_UNUSED GeanyDocument
 {
 	g_return_if_fail(doc != NULL && doc->file_name != NULL);
 
-	//tags of open files managed by geany
+	/* tags of open files managed by geany*/
 	if (gprj_project_is_in_project(doc->file_name))
 		gprj_project_remove_file_tag(doc->file_name);
 
@@ -80,7 +80,8 @@ static void on_doc_close(G_GNUC_UNUSED GObject * obj, GeanyDocument * doc,
 	if (doc->file_name == NULL)
 		return;
 
-	//tags of open files managed by geany - when the file gets closed, we should take care of it
+	/* tags of open files managed by geany - when the file gets closed, 
+	 * we should take care of it */
 	if (gprj_project_is_in_project(doc->file_name))
 		gprj_project_add_file_tag(doc->file_name);
 
@@ -155,7 +156,7 @@ static void on_project_save(G_GNUC_UNUSED GObject * obj, GKeyFile * config,
 {
 	if (!g_prj)
 	{
-		//happens when the project is created
+		/* happens when the project is created */
 		gprj_project_open(config);
 		gprj_sidebar_update(TRUE);
 		gprj_sidebar_activate(TRUE);


Modified: gproject/src/gproject-project.c
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -144,7 +144,7 @@ static gboolean deferred_op_queue_flush(G_GNUC_UNUSED gpointer data)
 	deferred_op_queue_clean();
 	flush_queued = FALSE;
 
-	return FALSE; // returning false removes this callback; it is a one-shot
+	return FALSE; /* returning false removes this callback; it is a one-shot */
 }
 
 


Modified: gproject/src/gproject-sidebar.c
10 files changed, 5 insertions(+), 5 deletions(-)
===================================================================
@@ -351,7 +351,7 @@ static void on_open_clicked()
 			
 			if (!icon)
 			{
-				// help string doesn't have icon
+				/* help string doesn't have icon */
 				return;
 			}
 
@@ -691,7 +691,7 @@ void gprj_sidebar_init()
 
 	s_file_view_vbox = gtk_vbox_new(FALSE, 0);
 
-	// *** toolbar ***
+	/**** toolbar ****/
 
 	toolbar = gtk_toolbar_new();
 	gtk_toolbar_set_icon_size(GTK_TOOLBAR(toolbar), GTK_ICON_SIZE_MENU);
@@ -729,7 +729,7 @@ void gprj_sidebar_init()
 
 	gtk_box_pack_start(GTK_BOX(s_file_view_vbox), toolbar, FALSE, FALSE, 0);
 
-	// *** tree view ***
+	/**** tree view ****/
 
 	s_file_view = gtk_tree_view_new();
 
@@ -765,7 +765,7 @@ void gprj_sidebar_init()
 	g_signal_connect(G_OBJECT(s_file_view), "key-press-event",
 			G_CALLBACK(on_key_press), NULL);
 
-	// *** popup menu ***
+	/**** popup menu ****/
 
 	s_popup_menu.widget = gtk_menu_new();
 
@@ -809,7 +809,7 @@ void gprj_sidebar_init()
 				 G_CALLBACK(keybindings_send_command),
 				 GINT_TO_POINTER(GEANY_KEYS_VIEW_SIDEBAR));
 
-	// *** the rest ***
+	/**** the rest ****/
 
 	scrollwin = gtk_scrolled_window_new(NULL, NULL);
 	gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrollwin),


@@ Diff output truncated at 100000 characters. @@


--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).



More information about the Plugins-Commits mailing list