[anjuta] run-program: Remove trailing spaces



commit 78e2eadcc668896a747b9e71ae611370c24e7753
Author: SÃbastien Granjoux <seb sfo free fr>
Date:   Mon Nov 12 22:01:09 2012 +0100

    run-program: Remove trailing spaces

 plugins/run-program/plugin.h |   12 ++++++------
 plugins/run-program/utils.c  |    8 ++++----
 2 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/plugins/run-program/plugin.h b/plugins/run-program/plugin.h
index 768c18c..0957f60 100644
--- a/plugins/run-program/plugin.h
+++ b/plugins/run-program/plugin.h
@@ -46,23 +46,23 @@ typedef struct _RunProgramChild RunProgramChild;
 struct _RunProgramPlugin
 {
 	AnjutaPlugin parent;
-	
+
 	/* Menu item */
 	gint uiid;
 	GtkActionGroup *action_group;
-	
+
 	/* Save data */
 	gboolean run_in_terminal;
 	gchar **environment_vars;
 	GList *recent_target;
 	GList *recent_dirs;
-	GList *recent_args;	
-	
+	GList *recent_args;
+
 	/* Child watches */
 	GList *child;
 	guint child_exited_connection;
-	
-	/* Build data */	
+
+	/* Build data */
 	gchar *build_uri;
 	gpointer build_handle;
 };
diff --git a/plugins/run-program/utils.c b/plugins/run-program/utils.c
index 2b616d6..b7f0e9d 100644
--- a/plugins/run-program/utils.c
+++ b/plugins/run-program/utils.c
@@ -50,7 +50,7 @@ run_plugin_gtk_tree_model_find_string (GtkTreeModel *model, GtkTreeIter *parent,
 	{
 		valid = gtk_tree_model_get_iter_first (model, iter);
 	}
-	else 
+	else
 	{
 		valid = gtk_tree_model_iter_children (model, iter, parent);
 	}
@@ -58,16 +58,16 @@ run_plugin_gtk_tree_model_find_string (GtkTreeModel *model, GtkTreeIter *parent,
 	while (valid)
 	{
 		gchar *mvalue;
-		
+
 		gtk_tree_model_get (model, iter, col, &mvalue, -1);
 		found = (mvalue != NULL) && (strcmp (mvalue, value) == 0);
 		g_free (mvalue);
-		if (found) break;						   
+		if (found) break;
 
 		if (gtk_tree_model_iter_has_child (model, iter))
 		{
 			GtkTreeIter citer;
-			
+
 			found = run_plugin_gtk_tree_model_find_string (model, iter,
 														   &citer, col, value);
 			if (found)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]