[anjuta/libgit2-glib: 17/18] git: Rename git_pane_report_errors to git_pane_report_process_errors
- From: James Liggett <jrliggett src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [anjuta/libgit2-glib: 17/18] git: Rename git_pane_report_errors to git_pane_report_process_errors
- Date: Fri, 12 Jul 2013 05:57:52 +0000 (UTC)
commit b225213fc9a376f13bc01bfee8329862a6690be6
Author: James Liggett <jrliggett cox net>
Date: Wed Jul 10 12:54:58 2013 -0700
git: Rename git_pane_report_errors to git_pane_report_process_errors
plugins/git/git-add-files-pane.c | 2 +-
plugins/git/git-add-remote-pane.c | 2 +-
plugins/git/git-apply-mailbox-pane.c | 8 ++++----
plugins/git/git-apply-stash-pane.c | 2 +-
plugins/git/git-branches-pane.c | 2 +-
plugins/git/git-checkout-pane.c | 4 ++--
plugins/git/git-cherry-pick-pane.c | 4 ++--
plugins/git/git-clear-stash-pane.c | 2 +-
plugins/git/git-commit-pane.c | 2 +-
plugins/git/git-create-branch-pane.c | 2 +-
plugins/git/git-create-tag-pane.c | 2 +-
plugins/git/git-delete-branches-pane.c | 6 +++---
plugins/git/git-delete-remote-pane.c | 2 +-
plugins/git/git-delete-tags-pane.c | 2 +-
plugins/git/git-diff-pane.c | 4 ++--
plugins/git/git-diff-stash-pane.c | 2 +-
plugins/git/git-drop-stash-pane.c | 2 +-
plugins/git/git-fetch-pane.c | 2 +-
plugins/git/git-log-pane.c | 2 +-
plugins/git/git-merge-pane.c | 2 +-
plugins/git/git-pane.c | 2 +-
plugins/git/git-pane.h | 4 ++--
plugins/git/git-patch-series-pane.c | 2 +-
plugins/git/git-pull-pane.c | 2 +-
plugins/git/git-push-pane.c | 2 +-
plugins/git/git-rebase-pane.c | 2 +-
plugins/git/git-remove-files-pane.c | 2 +-
plugins/git/git-reset-pane.c | 2 +-
plugins/git/git-resolve-conflicts-pane.c | 2 +-
plugins/git/git-revert-pane.c | 4 ++--
plugins/git/git-stash-changes-pane.c | 2 +-
plugins/git/git-switch-branch-pane.c | 2 +-
plugins/git/git-unstage-pane.c | 4 ++--
33 files changed, 44 insertions(+), 44 deletions(-)
---
diff --git a/plugins/git/git-add-files-pane.c b/plugins/git/git-add-files-pane.c
index b1c4657..137cf66 100644
--- a/plugins/git/git-add-files-pane.c
+++ b/plugins/git/git-add-files-pane.c
@@ -48,7 +48,7 @@ on_ok_action_activated (GtkAction *action, GitAddFilesPane *self)
anjuta_util_glist_strings_free (paths);
g_signal_connect (G_OBJECT (add_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-add-remote-pane.c b/plugins/git/git-add-remote-pane.c
index f303e00..d6dd552 100644
--- a/plugins/git/git-add-remote-pane.c
+++ b/plugins/git/git-add-remote-pane.c
@@ -75,7 +75,7 @@ on_ok_action_activated (GtkAction *action, GitAddRemotePane *self)
}
g_signal_connect (G_OBJECT (add_remote_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-apply-mailbox-pane.c b/plugins/git/git-apply-mailbox-pane.c
index 0dd7762..6960dd9 100644
--- a/plugins/git/git-apply-mailbox-pane.c
+++ b/plugins/git/git-apply-mailbox-pane.c
@@ -53,7 +53,7 @@ on_ok_action_activated (GtkAction *action, GitApplyMailboxPane *self)
plugin);
g_signal_connect (G_OBJECT (apply_mailbox_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
@@ -175,7 +175,7 @@ on_apply_mailbox_continue_button_clicked (GtkAction *action, Git *plugin)
plugin);
g_signal_connect (G_OBJECT (continue_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (continue_command), "command-finished",
@@ -200,7 +200,7 @@ on_apply_mailbox_skip_button_clicked (GtkAction *action, Git *plugin)
plugin);
g_signal_connect (G_OBJECT (continue_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (continue_command), "command-finished",
@@ -225,7 +225,7 @@ on_apply_mailbox_abort_button_clicked (GtkAction *action, Git *plugin)
plugin);
g_signal_connect (G_OBJECT (continue_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (continue_command), "command-finished",
diff --git a/plugins/git/git-apply-stash-pane.c b/plugins/git/git-apply-stash-pane.c
index c5a04c8..54a24c4 100644
--- a/plugins/git/git-apply-stash-pane.c
+++ b/plugins/git/git-apply-stash-pane.c
@@ -36,7 +36,7 @@ apply_stash (Git *plugin, gboolean restore_index)
git_pane_create_message_view (plugin);
g_signal_connect (G_OBJECT (apply_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-branches-pane.c b/plugins/git/git-branches-pane.c
index 87b4759..74aeb99 100644
--- a/plugins/git/git-branches-pane.c
+++ b/plugins/git/git-branches-pane.c
@@ -283,7 +283,7 @@ on_branches_view_row_activated (GtkTreeView *branches_view, GtkTreePath *path,
branch);
g_signal_connect (G_OBJECT (checkout_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (checkout_command), "command-finished",
diff --git a/plugins/git/git-checkout-pane.c b/plugins/git/git-checkout-pane.c
index 0993273..c4d81bd 100644
--- a/plugins/git/git-checkout-pane.c
+++ b/plugins/git/git-checkout-pane.c
@@ -47,7 +47,7 @@ on_ok_action_activated (GtkAction *action, GitCheckoutPane *self)
anjuta_util_glist_strings_free (paths);
g_signal_connect (G_OBJECT (checkout_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (checkout_command), "command-finished",
@@ -168,7 +168,7 @@ on_git_status_checkout_activated (GtkAction *action, Git *plugin)
paths, FALSE);
g_signal_connect (G_OBJECT (checkout_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (checkout_command), "command-finished",
diff --git a/plugins/git/git-cherry-pick-pane.c b/plugins/git/git-cherry-pick-pane.c
index e4cc01c..a0aa3ea 100644
--- a/plugins/git/git-cherry-pick-pane.c
+++ b/plugins/git/git-cherry-pick-pane.c
@@ -69,7 +69,7 @@ on_ok_action_activated (GtkAction *action, GitCherryPickPane *self)
plugin);
g_signal_connect (G_OBJECT (cherry_pick_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
@@ -194,7 +194,7 @@ on_git_log_cherry_pick_activated (GtkAction *action, Git *plugin)
FALSE);
g_signal_connect (G_OBJECT (cherry_pick_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (cherry_pick_command), "command-finished",
diff --git a/plugins/git/git-clear-stash-pane.c b/plugins/git/git-clear-stash-pane.c
index e26cbd2..a7c4bbc 100644
--- a/plugins/git/git-clear-stash-pane.c
+++ b/plugins/git/git-clear-stash-pane.c
@@ -27,7 +27,7 @@ on_clear_stash_button_clicked (GtkAction *action, Git *plugin)
clear_command = git_stash_clear_command_new (plugin->project_root_directory);
g_signal_connect (G_OBJECT (clear_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-commit-pane.c b/plugins/git/git-commit-pane.c
index 58f7f6d..cec6487 100644
--- a/plugins/git/git-commit-pane.c
+++ b/plugins/git/git-commit-pane.c
@@ -179,7 +179,7 @@ on_ok_action_activated (GtkAction *action, GitCommitPane *self)
plugin);
g_signal_connect (G_OBJECT (commit_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (commit_command), "command-finished",
diff --git a/plugins/git/git-create-branch-pane.c b/plugins/git/git-create-branch-pane.c
index 70af283..eb14fa9 100644
--- a/plugins/git/git-create-branch-pane.c
+++ b/plugins/git/git-create-branch-pane.c
@@ -66,7 +66,7 @@ on_ok_action_activated (GtkAction *action, GitCreateBranchPane *self)
gtk_toggle_button_get_active (checkout_check));
g_signal_connect (G_OBJECT (create_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-create-tag-pane.c b/plugins/git/git-create-tag-pane.c
index f9d962b..cf8f1c9 100644
--- a/plugins/git/git-create-tag-pane.c
+++ b/plugins/git/git-create-tag-pane.c
@@ -93,7 +93,7 @@ on_ok_action_activated (GtkAction *action, GitCreateTagPane *self)
gtk_toggle_action_get_active (force_action));
g_signal_connect (G_OBJECT (create_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-delete-branches-pane.c b/plugins/git/git-delete-branches-pane.c
index 8421c4b..2749640 100644
--- a/plugins/git/git-delete-branches-pane.c
+++ b/plugins/git/git-delete-branches-pane.c
@@ -59,7 +59,7 @@ on_ok_action_activated (GtkAction *action, GitDeleteBranchesPane *self)
g_signal_connect (G_OBJECT (local_delete_command),
"command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
@@ -83,7 +83,7 @@ on_ok_action_activated (GtkAction *action, GitDeleteBranchesPane *self)
g_signal_connect (G_OBJECT (remote_delete_command),
"command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
@@ -247,7 +247,7 @@ on_git_branch_delete_activated (GtkAction *action, Git *plugin)
g_list_free (branches);
g_signal_connect (G_OBJECT (delete_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (delete_command), "command-finished",
diff --git a/plugins/git/git-delete-remote-pane.c b/plugins/git/git-delete-remote-pane.c
index 442393a..6135732 100644
--- a/plugins/git/git-delete-remote-pane.c
+++ b/plugins/git/git-delete-remote-pane.c
@@ -35,7 +35,7 @@ on_delete_remote_button_clicked (GtkAction *action, Git *plugin)
g_free (remote);
g_signal_connect (G_OBJECT (delete_remote_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-delete-tags-pane.c b/plugins/git/git-delete-tags-pane.c
index a0c4f8d..e52cb31 100644
--- a/plugins/git/git-delete-tags-pane.c
+++ b/plugins/git/git-delete-tags-pane.c
@@ -35,7 +35,7 @@ on_delete_tags_button_clicked (GtkAction *action, Git *plugin)
anjuta_util_glist_strings_free (tags);
g_signal_connect (G_OBJECT (delete_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-diff-pane.c b/plugins/git/git-diff-pane.c
index dd67cd5..2bb1607 100644
--- a/plugins/git/git-diff-pane.c
+++ b/plugins/git/git-diff-pane.c
@@ -40,7 +40,7 @@ on_diff_button_clicked (GtkAction *action, Git *plugin)
editor);
g_signal_connect (G_OBJECT (diff_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (diff_command), "command-finished",
@@ -85,7 +85,7 @@ on_commit_diff_button_clicked (GtkAction *action, Git *plugin)
editor);
g_signal_connect (G_OBJECT (diff_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (diff_command), "command-finished",
diff --git a/plugins/git/git-diff-stash-pane.c b/plugins/git/git-diff-stash-pane.c
index cfa52f3..17c6afe 100644
--- a/plugins/git/git-diff-stash-pane.c
+++ b/plugins/git/git-diff-stash-pane.c
@@ -49,7 +49,7 @@ on_diff_stash_button_clicked (GtkAction *action, Git *plugin)
g_free (stash);
g_signal_connect (G_OBJECT (diff_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-drop-stash-pane.c b/plugins/git/git-drop-stash-pane.c
index b7e216c..221bc61 100644
--- a/plugins/git/git-drop-stash-pane.c
+++ b/plugins/git/git-drop-stash-pane.c
@@ -34,7 +34,7 @@ on_drop_stash_button_clicked (GtkAction *action, Git *plugin)
g_free (stash);
g_signal_connect (G_OBJECT (drop_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-fetch-pane.c b/plugins/git/git-fetch-pane.c
index ce86c1d..c51a47d 100644
--- a/plugins/git/git-fetch-pane.c
+++ b/plugins/git/git-fetch-pane.c
@@ -33,7 +33,7 @@ on_fetch_button_clicked (GtkAction *action, Git *plugin)
plugin);
g_signal_connect (G_OBJECT (fetch_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (fetch_command), "command-finished",
diff --git a/plugins/git/git-log-pane.c b/plugins/git/git-log-pane.c
index e159214..a7aadbf 100644
--- a/plugins/git/git-log-pane.c
+++ b/plugins/git/git-log-pane.c
@@ -293,7 +293,7 @@ on_log_command_finished (AnjutaCommand *command, guint return_code,
* empty log.
*/
#if 0
- git_pane_report_errors (command, return_code,
+ git_pane_report_process_errors (command, return_code,
ANJUTA_PLUGIN_GIT (anjuta_dock_pane_get_plugin (ANJUTA_DOCK_PANE
(self))));
#endif
goto out;
diff --git a/plugins/git/git-merge-pane.c b/plugins/git/git-merge-pane.c
index bce31fe..d47c39a 100644
--- a/plugins/git/git-merge-pane.c
+++ b/plugins/git/git-merge-pane.c
@@ -90,7 +90,7 @@ on_ok_action_activated (GtkAction *action, GitMergePane *self)
plugin);
g_signal_connect (G_OBJECT (merge_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (merge_command), "command-finished",
diff --git a/plugins/git/git-pane.c b/plugins/git/git-pane.c
index 5be6de6..805385d 100644
--- a/plugins/git/git-pane.c
+++ b/plugins/git/git-pane.c
@@ -275,7 +275,7 @@ message_dialog (GtkMessageType message_type, const gchar *message, Git *plugin)
}
void
-git_pane_report_errors (AnjutaCommand *command, guint return_code, Git *plugin)
+git_pane_report_process_errors (AnjutaCommand *command, guint return_code, Git *plugin)
{
gchar *message;
diff --git a/plugins/git/git-pane.h b/plugins/git/git-pane.h
index 52a2e56..43df9c3 100644
--- a/plugins/git/git-pane.h
+++ b/plugins/git/git-pane.h
@@ -64,8 +64,8 @@ void git_pane_set_log_view_column_label (GtkTextBuffer *buffer,
gchar *git_pane_get_log_from_text_view (GtkTextView *text_view);
gboolean git_pane_check_input (GtkWidget *parent, GtkWidget *widget,
const gchar *input, const gchar *error_message);
-void git_pane_report_errors (AnjutaCommand *command, guint return_code,
- Git *plugin);
+void git_pane_report_process_errors (AnjutaCommand *command, guint return_code,
+ Git *plugin);
void git_pane_send_raw_output_to_editor (AnjutaCommand *command,
IAnjutaEditor *editor);
diff --git a/plugins/git/git-patch-series-pane.c b/plugins/git/git-patch-series-pane.c
index 12cf977..15fbf32 100644
--- a/plugins/git/git-patch-series-pane.c
+++ b/plugins/git/git-patch-series-pane.c
@@ -63,7 +63,7 @@ on_ok_action_activated (GtkAction *action, GitPatchSeriesPane *self)
plugin);
g_signal_connect (G_OBJECT (format_patch_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-pull-pane.c b/plugins/git/git-pull-pane.c
index 25bd62f..6df9f7a 100644
--- a/plugins/git/git-pull-pane.c
+++ b/plugins/git/git-pull-pane.c
@@ -88,7 +88,7 @@ on_ok_action_activated (GtkAction *action, GitPullPane *self)
plugin);
g_signal_connect (G_OBJECT (pull_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (pull_command), "command-finished",
diff --git a/plugins/git/git-push-pane.c b/plugins/git/git-push-pane.c
index b6272c7..f8d5fbc 100644
--- a/plugins/git/git-push-pane.c
+++ b/plugins/git/git-push-pane.c
@@ -130,7 +130,7 @@ on_ok_action_activated (GtkAction *action, GitPushPane *self)
plugin);
g_signal_connect (G_OBJECT (push_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (push_command), "command-finished",
diff --git a/plugins/git/git-rebase-pane.c b/plugins/git/git-rebase-pane.c
index c588684..d506b07 100644
--- a/plugins/git/git-rebase-pane.c
+++ b/plugins/git/git-rebase-pane.c
@@ -25,7 +25,7 @@ start_rebase_command (Git *plugin, AnjutaCommand *command)
git_pane_create_message_view (plugin);
g_signal_connect (G_OBJECT (command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-remove-files-pane.c b/plugins/git/git-remove-files-pane.c
index f35fe3b..5b82454 100644
--- a/plugins/git/git-remove-files-pane.c
+++ b/plugins/git/git-remove-files-pane.c
@@ -48,7 +48,7 @@ on_ok_action_activated (GtkAction *action, GitRemoveFilesPane *self)
anjuta_util_glist_strings_free (paths);
g_signal_connect (G_OBJECT (remove_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-reset-pane.c b/plugins/git/git-reset-pane.c
index b902754..2fa7fff 100644
--- a/plugins/git/git-reset-pane.c
+++ b/plugins/git/git-reset-pane.c
@@ -61,7 +61,7 @@ on_ok_action_activated (GtkAction *action, GitResetPane *self)
revision, mode);
g_signal_connect (G_OBJECT (reset_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-resolve-conflicts-pane.c b/plugins/git/git-resolve-conflicts-pane.c
index 1fac906..51ba023 100644
--- a/plugins/git/git-resolve-conflicts-pane.c
+++ b/plugins/git/git-resolve-conflicts-pane.c
@@ -36,7 +36,7 @@ on_resolve_conflicts_button_clicked (GtkAction *action, Git *plugin)
anjuta_util_glist_strings_free (paths);
g_signal_connect (G_OBJECT (add_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-revert-pane.c b/plugins/git/git-revert-pane.c
index c1fbc60..9b08066 100644
--- a/plugins/git/git-revert-pane.c
+++ b/plugins/git/git-revert-pane.c
@@ -57,7 +57,7 @@ on_ok_action_activated (GtkAction *action, GitRevertPane *self)
gtk_toggle_action_get_active (no_commit_action));
g_signal_connect (G_OBJECT (revert_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
@@ -181,7 +181,7 @@ on_git_log_revert_activated (GtkAction *action, Git *plugin)
sha, FALSE);
g_signal_connect (G_OBJECT (revert_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (revert_command), "command-finished",
diff --git a/plugins/git/git-stash-changes-pane.c b/plugins/git/git-stash-changes-pane.c
index c0d366e..678eb9a 100644
--- a/plugins/git/git-stash-changes-pane.c
+++ b/plugins/git/git-stash-changes-pane.c
@@ -56,7 +56,7 @@ on_ok_action_activated (GtkAction *action, GitStashChangesPane *self)
g_free (message);
g_signal_connect (G_OBJECT (save_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-switch-branch-pane.c b/plugins/git/git-switch-branch-pane.c
index 229c120..29b842a 100644
--- a/plugins/git/git-switch-branch-pane.c
+++ b/plugins/git/git-switch-branch-pane.c
@@ -35,7 +35,7 @@ on_switch_branch_button_clicked (GtkAction *action, Git *plugin)
g_free (selected_branch);
g_signal_connect (G_OBJECT (checkout_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
diff --git a/plugins/git/git-unstage-pane.c b/plugins/git/git-unstage-pane.c
index f8f4e9e..b4f2093 100644
--- a/plugins/git/git-unstage-pane.c
+++ b/plugins/git/git-unstage-pane.c
@@ -37,7 +37,7 @@ on_unstage_button_clicked (GtkAction *action, Git *plugin)
anjuta_util_glist_strings_free (paths);
g_signal_connect (G_OBJECT (reset_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
@@ -69,7 +69,7 @@ on_git_status_unstage_activated (GtkAction *action, Git *plugin)
paths);
g_signal_connect (G_OBJECT (reset_command), "command-finished",
- G_CALLBACK (git_pane_report_errors),
+ G_CALLBACK (git_pane_report_process_errors),
plugin);
g_signal_connect (G_OBJECT (reset_command), "command-finished",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]