[anjuta/git-shell: 32/34] git: Fix selected list generation in the status pane



commit d576042ea497f96304e7bfd33fde5b0a8c3f0b4b
Author: James Liggett <jrliggett cox net>
Date:   Wed Jun 9 23:35:54 2010 -0700

    git: Fix selected list generation in the status pane
    
    Hash table foreach functions don't take the hash table as a parameter.

 plugins/git/git-status-pane.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/plugins/git/git-status-pane.c b/plugins/git/git-status-pane.c
index 8a29339..c1d68b9 100644
--- a/plugins/git/git-status-pane.c
+++ b/plugins/git/git-status-pane.c
@@ -514,8 +514,7 @@ git_status_pane_new (Git *plugin)
 }
 
 static void
-selected_items_table_foreach (GHashTable *hash_table, gchar *path, gchar value,
-                              GList **list)
+selected_items_table_foreach (gchar *path, gchar *value, GList **list)
 {
 	*list = g_list_append (*list, g_strdup (path));
 }



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