[anjuta] git: Remove some unneeded code from the delete tag dialog
- From: James Liggett <jrliggett src gnome org>
- To: svn-commits-list gnome org
- Subject: [anjuta] git: Remove some unneeded code from the delete tag dialog
- Date: Tue, 14 Jul 2009 01:18:11 +0000 (UTC)
commit 6f78bc9edca991f22c3dd15ae92ad810687a2573
Author: James Liggett <jrliggett cox net>
Date: Mon Jul 13 18:15:40 2009 -0700
git: Remove some unneeded code from the delete tag dialog
plugins/git/git-delete-tag-dialog.c | 21 ---------------------
1 files changed, 0 insertions(+), 21 deletions(-)
---
diff --git a/plugins/git/git-delete-tag-dialog.c b/plugins/git/git-delete-tag-dialog.c
index c8895aa..dac0880 100644
--- a/plugins/git/git-delete-tag-dialog.c
+++ b/plugins/git/git-delete-tag-dialog.c
@@ -43,27 +43,6 @@ on_delete_command_finished (AnjutaCommand *command, guint return_code,
}
static void
-on_list_tag_command_data_arrived (AnjutaCommand *command,
- GtkListStore *tag_list_model)
-{
- GQueue *output_queue;
- gchar *tag_name;
- GtkTreeIter iter;
-
- output_queue = git_raw_output_command_get_output (GIT_RAW_OUTPUT_COMMAND (command));
-
- while (g_queue_peek_head (output_queue))
- {
- tag_name = g_queue_pop_head (output_queue);
-
- gtk_list_store_append (tag_list_model, &iter);
- gtk_list_store_set (tag_list_model, &iter, 1, tag_name, -1);
-
- g_free (tag_name);
- }
-}
-
-static void
on_delete_tag_dialog_response (GtkDialog *dialog, gint response_id,
GitUIData *data)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]