[anjuta/libgit2-glib] git: Fix GObject macro names



commit e130c4720ab273fbd13ad0d4a381239798d6a7a3
Author: James Liggett <jrliggett cox net>
Date:   Fri Jul 12 23:59:37 2013 -0700

    git: Fix GObject macro names

 plugins/git/git-add-command.c                    |    2 +-
 plugins/git/git-apply-mailbox-command.c          |    2 +-
 plugins/git/git-apply-mailbox-continue-command.c |    2 +-
 plugins/git/git-bisect-reset-command.c           |    2 +-
 plugins/git/git-bisect-start-command.c           |    2 +-
 plugins/git/git-bisect-state-command.c           |    2 +-
 plugins/git/git-branch-checkout-command.c        |    2 +-
 plugins/git/git-branch-create-command.c          |    2 +-
 plugins/git/git-branch-delete-command.c          |    2 +-
 plugins/git/git-branch-list-command.c            |    2 +-
 plugins/git/git-checkout-files-command.c         |    2 +-
 plugins/git/git-cherry-pick-command.c            |    2 +-
 plugins/git/git-clone-command.c                  |    2 +-
 plugins/git/git-commit-command.c                 |    2 +-
 plugins/git/git-fetch-command.c                  |    2 +-
 plugins/git/git-format-patch-command.c           |    2 +-
 plugins/git/git-init-command.c                   |    2 +-
 plugins/git/git-list-tree-command.c              |    2 +-
 plugins/git/git-log-command.c                    |    2 +-
 plugins/git/git-log-message-command.c            |    2 +-
 plugins/git/git-merge-command.c                  |    2 +-
 plugins/git/git-process-command.h                |   12 ++++++------
 plugins/git/git-pull-command.c                   |    2 +-
 plugins/git/git-push-command.c                   |    2 +-
 plugins/git/git-raw-output-command.c             |    2 +-
 plugins/git/git-rebase-continue-command.c        |    2 +-
 plugins/git/git-rebase-start-command.c           |    2 +-
 plugins/git/git-ref-command.c                    |    2 +-
 plugins/git/git-remote-add-command.c             |    2 +-
 plugins/git/git-remote-delete-command.c          |    2 +-
 plugins/git/git-remove-command.c                 |    2 +-
 plugins/git/git-reset-files-command.c            |    2 +-
 plugins/git/git-reset-tree-command.c             |    2 +-
 plugins/git/git-revert-command.c                 |    2 +-
 plugins/git/git-stash-apply-command.c            |    2 +-
 plugins/git/git-stash-clear-command.c            |    2 +-
 plugins/git/git-stash-drop-command.c             |    2 +-
 plugins/git/git-stash-list-command.c             |    2 +-
 plugins/git/git-stash-save-command.c             |    2 +-
 plugins/git/git-status-command.c                 |    2 +-
 plugins/git/git-tag-create-command.c             |    2 +-
 plugins/git/git-tag-delete-command.c             |    2 +-
 42 files changed, 47 insertions(+), 47 deletions(-)
---
diff --git a/plugins/git/git-add-command.c b/plugins/git/git-add-command.c
index 40ba895..38fe52d 100644
--- a/plugins/git/git-add-command.c
+++ b/plugins/git/git-add-command.c
@@ -30,7 +30,7 @@ struct _GitAddCommandPriv
        gboolean force;
 };
 
-G_DEFINE_TYPE (GitAddCommand, git_add_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitAddCommand, git_add_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_add_command_init (GitAddCommand *self)
diff --git a/plugins/git/git-apply-mailbox-command.c b/plugins/git/git-apply-mailbox-command.c
index c09c49d..5f9535e 100644
--- a/plugins/git/git-apply-mailbox-command.c
+++ b/plugins/git/git-apply-mailbox-command.c
@@ -31,7 +31,7 @@ struct _GitApplyMailboxCommandPriv
 };
 
 G_DEFINE_TYPE (GitApplyMailboxCommand, git_apply_mailbox_command, 
-                          GIT_TYPE_COMMAND);
+                          GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_apply_mailbox_command_init (GitApplyMailboxCommand *self)
diff --git a/plugins/git/git-apply-mailbox-continue-command.c 
b/plugins/git/git-apply-mailbox-continue-command.c
index d3e1c57..ce7af4b 100644
--- a/plugins/git/git-apply-mailbox-continue-command.c
+++ b/plugins/git/git-apply-mailbox-continue-command.c
@@ -30,7 +30,7 @@ struct _GitApplyMailboxContinueCommandPriv
 };
 
 G_DEFINE_TYPE (GitApplyMailboxContinueCommand, git_apply_mailbox_continue_command, 
-                          GIT_TYPE_COMMAND);
+                          GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_apply_mailbox_continue_command_init (GitApplyMailboxContinueCommand *self)
diff --git a/plugins/git/git-bisect-reset-command.c b/plugins/git/git-bisect-reset-command.c
index 93be232..436782d 100644
--- a/plugins/git/git-bisect-reset-command.c
+++ b/plugins/git/git-bisect-reset-command.c
@@ -25,7 +25,7 @@
 #include "git-bisect-reset-command.h"
 
 G_DEFINE_TYPE (GitBisectResetCommand, git_bisect_reset_command, 
-                          GIT_TYPE_COMMAND);
+                          GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_bisect_reset_command_init (GitBisectResetCommand *self)
diff --git a/plugins/git/git-bisect-start-command.c b/plugins/git/git-bisect-start-command.c
index d562933..6dce3ed 100644
--- a/plugins/git/git-bisect-start-command.c
+++ b/plugins/git/git-bisect-start-command.c
@@ -31,7 +31,7 @@ struct _GitBisectStartCommandPriv
 };
 
 G_DEFINE_TYPE (GitBisectStartCommand, git_bisect_start_command, 
-                          GIT_TYPE_COMMAND);
+                          GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_bisect_start_command_init (GitBisectStartCommand *self)
diff --git a/plugins/git/git-bisect-state-command.c b/plugins/git/git-bisect-state-command.c
index e9b7383..2ff95ce 100644
--- a/plugins/git/git-bisect-state-command.c
+++ b/plugins/git/git-bisect-state-command.c
@@ -31,7 +31,7 @@ struct _GitBisectStateCommandPriv
 };
 
 G_DEFINE_TYPE (GitBisectStateCommand, git_bisect_state_command, 
-                          GIT_TYPE_COMMAND);
+                          GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_bisect_state_command_init (GitBisectStateCommand *self)
diff --git a/plugins/git/git-branch-checkout-command.c b/plugins/git/git-branch-checkout-command.c
index d8da115..20d28f1 100644
--- a/plugins/git/git-branch-checkout-command.c
+++ b/plugins/git/git-branch-checkout-command.c
@@ -29,7 +29,7 @@ struct _GitBranchCheckoutCommandPriv
        gchar *branch_name;
 };
 
-G_DEFINE_TYPE (GitBranchCheckoutCommand, git_branch_checkout_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitBranchCheckoutCommand, git_branch_checkout_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_branch_checkout_command_init (GitBranchCheckoutCommand *self)
diff --git a/plugins/git/git-branch-create-command.c b/plugins/git/git-branch-create-command.c
index ef804a0..88a40d7 100644
--- a/plugins/git/git-branch-create-command.c
+++ b/plugins/git/git-branch-create-command.c
@@ -31,7 +31,7 @@ struct _GitBranchCreateCommandPriv
        gboolean checkout;
 };
 
-G_DEFINE_TYPE (GitBranchCreateCommand, git_branch_create_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitBranchCreateCommand, git_branch_create_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_branch_create_command_init (GitBranchCreateCommand *self)
diff --git a/plugins/git/git-branch-delete-command.c b/plugins/git/git-branch-delete-command.c
index 4041aef..329ae7a 100644
--- a/plugins/git/git-branch-delete-command.c
+++ b/plugins/git/git-branch-delete-command.c
@@ -31,7 +31,7 @@ struct _GitBranchDeleteCommandPriv
        gboolean require_merged;
 };
 
-G_DEFINE_TYPE (GitBranchDeleteCommand, git_branch_delete_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitBranchDeleteCommand, git_branch_delete_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_branch_delete_command_init (GitBranchDeleteCommand *self)
diff --git a/plugins/git/git-branch-list-command.c b/plugins/git/git-branch-list-command.c
index 88e82b3..28e1042 100644
--- a/plugins/git/git-branch-list-command.c
+++ b/plugins/git/git-branch-list-command.c
@@ -40,7 +40,7 @@ struct _GitBranchListCommandPriv
        GFileMonitor *head_monitor;
 };
 
-G_DEFINE_TYPE (GitBranchListCommand, git_branch_list_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitBranchListCommand, git_branch_list_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_branch_list_command_init (GitBranchListCommand *self)
diff --git a/plugins/git/git-checkout-files-command.c b/plugins/git/git-checkout-files-command.c
index 5d29222..714e30e 100644
--- a/plugins/git/git-checkout-files-command.c
+++ b/plugins/git/git-checkout-files-command.c
@@ -30,7 +30,7 @@ struct _GitCheckoutFilesCommandPriv
        gboolean checkout_all;
 };
 
-G_DEFINE_TYPE (GitCheckoutFilesCommand, git_checkout_files_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitCheckoutFilesCommand, git_checkout_files_command, GIT_TYPE_PROCESS_COMMAND);
 
 static guint
 git_checkout_files_command_run (AnjutaCommand *command)
diff --git a/plugins/git/git-cherry-pick-command.c b/plugins/git/git-cherry-pick-command.c
index 4d987f2..8d55713 100644
--- a/plugins/git/git-cherry-pick-command.c
+++ b/plugins/git/git-cherry-pick-command.c
@@ -32,7 +32,7 @@ struct _GitCherryPickCommandPriv
        gboolean add_signoff;
 };
 
-G_DEFINE_TYPE (GitCherryPickCommand, git_cherry_pick_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitCherryPickCommand, git_cherry_pick_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_cherry_pick_command_init (GitCherryPickCommand *self)
diff --git a/plugins/git/git-clone-command.c b/plugins/git/git-clone-command.c
index f3989b6..48d66eb 100644
--- a/plugins/git/git-clone-command.c
+++ b/plugins/git/git-clone-command.c
@@ -30,7 +30,7 @@ struct _GitCloneCommandPriv
        gchar *repository_name;
 };
 
-G_DEFINE_TYPE (GitCloneCommand, git_clone_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitCloneCommand, git_clone_command, GIT_TYPE_PROCESS_COMMAND);
 
 static guint
 git_clone_command_run (AnjutaCommand *command)
diff --git a/plugins/git/git-commit-command.c b/plugins/git/git-commit-command.c
index 3662e25..63ac8d6 100644
--- a/plugins/git/git-commit-command.c
+++ b/plugins/git/git-commit-command.c
@@ -34,7 +34,7 @@ struct _GitCommitCommandPriv
        gchar *author_email;
 };
 
-G_DEFINE_TYPE (GitCommitCommand, git_commit_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitCommitCommand, git_commit_command, GIT_TYPE_PROCESS_COMMAND);
 
 static guint
 git_commit_command_run (AnjutaCommand *command)
diff --git a/plugins/git/git-fetch-command.c b/plugins/git/git-fetch-command.c
index ee1f421..d2d9fd0 100644
--- a/plugins/git/git-fetch-command.c
+++ b/plugins/git/git-fetch-command.c
@@ -24,7 +24,7 @@
 
 #include "git-fetch-command.h"
 
-G_DEFINE_TYPE (GitFetchCommand, git_fetch_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitFetchCommand, git_fetch_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_fetch_command_init (GitFetchCommand *self)
diff --git a/plugins/git/git-format-patch-command.c b/plugins/git/git-format-patch-command.c
index bc17b1d..2520b1d 100644
--- a/plugins/git/git-format-patch-command.c
+++ b/plugins/git/git-format-patch-command.c
@@ -32,7 +32,7 @@ struct _GitFormatPatchCommandPriv
 };
 
 G_DEFINE_TYPE (GitFormatPatchCommand, git_format_patch_command, 
-                          GIT_TYPE_COMMAND);
+                          GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_format_patch_command_init (GitFormatPatchCommand *self)
diff --git a/plugins/git/git-init-command.c b/plugins/git/git-init-command.c
index 92f45a4..51382b1 100644
--- a/plugins/git/git-init-command.c
+++ b/plugins/git/git-init-command.c
@@ -25,7 +25,7 @@
 #include "git-init-command.h"
 
 G_DEFINE_TYPE (GitInitCommand, git_init_command, 
-                          GIT_TYPE_COMMAND);
+                          GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_init_command_init (GitInitCommand *self)
diff --git a/plugins/git/git-list-tree-command.c b/plugins/git/git-list-tree-command.c
index df307dd..2cd3c97 100644
--- a/plugins/git/git-list-tree-command.c
+++ b/plugins/git/git-list-tree-command.c
@@ -33,7 +33,7 @@ struct _GitListTreeCommandPriv
        GHashTable *blobs;
 };
 
-G_DEFINE_TYPE (GitListTreeCommand, git_list_tree_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitListTreeCommand, git_list_tree_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_list_tree_command_init (GitListTreeCommand *self)
diff --git a/plugins/git/git-log-command.c b/plugins/git/git-log-command.c
index 9a2cf40..5882e43 100644
--- a/plugins/git/git-log-command.c
+++ b/plugins/git/git-log-command.c
@@ -41,7 +41,7 @@ struct _GitLogCommandPriv
        gchar *until_commit;
 };
 
-G_DEFINE_TYPE (GitLogCommand, git_log_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitLogCommand, git_log_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 on_data_command_data_arrived (AnjutaCommand *command, GitLogCommand *self)
diff --git a/plugins/git/git-log-message-command.c b/plugins/git/git-log-message-command.c
index 410bd94..29f4348 100644
--- a/plugins/git/git-log-message-command.c
+++ b/plugins/git/git-log-message-command.c
@@ -37,7 +37,7 @@ struct _GitLogMessageCommandPriv
        gboolean found_message;
 };
 
-G_DEFINE_TYPE (GitLogMessageCommand, git_log_message_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitLogMessageCommand, git_log_message_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_log_message_command_init (GitLogMessageCommand *self)
diff --git a/plugins/git/git-merge-command.c b/plugins/git/git-merge-command.c
index 25c9d20..074bae0 100644
--- a/plugins/git/git-merge-command.c
+++ b/plugins/git/git-merge-command.c
@@ -32,7 +32,7 @@ struct _GitMergeCommandPriv
        gboolean squash;
 };
 
-G_DEFINE_TYPE (GitMergeCommand, git_merge_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitMergeCommand, git_merge_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_merge_command_init (GitMergeCommand *self)
diff --git a/plugins/git/git-process-command.h b/plugins/git/git-process-command.h
index 30124f5..b2620ab 100644
--- a/plugins/git/git-process-command.h
+++ b/plugins/git/git-process-command.h
@@ -36,12 +36,12 @@
 
 G_BEGIN_DECLS
 
-#define GIT_TYPE_COMMAND             (git_process_command_get_type ())
-#define GIT_PROCESS_COMMAND(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIT_TYPE_COMMAND, 
GitProcessCommand))
-#define GIT_PROCESS_COMMAND_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), GIT_TYPE_COMMAND, 
GitProcessCommandClass))
-#define GIT_IS_COMMAND(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIT_TYPE_COMMAND))
-#define GIT_IS_COMMAND_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), GIT_TYPE_COMMAND))
-#define GIT_PROCESS_COMMAND_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), GIT_TYPE_COMMAND, 
GitProcessCommandClass))
+#define GIT_TYPE_PROCESS_COMMAND             (git_process_command_get_type ())
+#define GIT_PROCESS_COMMAND(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIT_TYPE_PROCESS_COMMAND, 
GitProcessCommand))
+#define GIT_PROCESS_COMMAND_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), GIT_TYPE_PROCESS_COMMAND, 
GitProcessCommandClass))
+#define GIT_IS_PROCESS_COMMAND(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIT_TYPE_PROCESS_COMMAND))
+#define GIT_IS_PROCESS_COMMAND_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), GIT_TYPE_PROCESS_COMMAND))
+#define GIT_PROCESS_COMMAND_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), GIT_TYPE_PROCESS_COMMAND, 
GitProcessCommandClass))
 
 typedef struct _GitProcessCommandClass GitProcessCommandClass;
 typedef struct _GitProcessCommand GitProcessCommand;
diff --git a/plugins/git/git-pull-command.c b/plugins/git/git-pull-command.c
index 36c7b37..2e32b23 100644
--- a/plugins/git/git-pull-command.c
+++ b/plugins/git/git-pull-command.c
@@ -36,7 +36,7 @@ struct _GitPullCommandPriv
        gboolean no_follow_tags;
 };
 
-G_DEFINE_TYPE (GitPullCommand, git_pull_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitPullCommand, git_pull_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_pull_command_init (GitPullCommand *self)
diff --git a/plugins/git/git-push-command.c b/plugins/git/git-push-command.c
index 351aa2c..d9d6b49 100644
--- a/plugins/git/git-push-command.c
+++ b/plugins/git/git-push-command.c
@@ -33,7 +33,7 @@ struct _GitPushCommandPriv
        gboolean force;
 };
 
-G_DEFINE_TYPE (GitPushCommand, git_push_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitPushCommand, git_push_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_push_command_init (GitPushCommand *self)
diff --git a/plugins/git/git-raw-output-command.c b/plugins/git/git-raw-output-command.c
index 1242a2d..2cc50d3 100644
--- a/plugins/git/git-raw-output-command.c
+++ b/plugins/git/git-raw-output-command.c
@@ -29,7 +29,7 @@ struct _GitRawOutputCommandPriv
        GQueue *output_queue;
 };
 
-G_DEFINE_TYPE (GitRawOutputCommand, git_raw_output_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitRawOutputCommand, git_raw_output_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_raw_output_command_init (GitRawOutputCommand *self)
diff --git a/plugins/git/git-rebase-continue-command.c b/plugins/git/git-rebase-continue-command.c
index 588cef4..248471e 100644
--- a/plugins/git/git-rebase-continue-command.c
+++ b/plugins/git/git-rebase-continue-command.c
@@ -30,7 +30,7 @@ struct _GitRebaseContinueCommandPriv
 };
 
 G_DEFINE_TYPE (GitRebaseContinueCommand, git_rebase_continue_command, 
-                          GIT_TYPE_COMMAND);
+                          GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_rebase_continue_command_init (GitRebaseContinueCommand *self)
diff --git a/plugins/git/git-rebase-start-command.c b/plugins/git/git-rebase-start-command.c
index d70ab08..d241f25 100644
--- a/plugins/git/git-rebase-start-command.c
+++ b/plugins/git/git-rebase-start-command.c
@@ -30,7 +30,7 @@ struct _GitRebaseStartCommandPriv
 };
 
 G_DEFINE_TYPE (GitRebaseStartCommand, git_rebase_start_command, 
-                          GIT_TYPE_COMMAND);
+                          GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_rebase_start_command_init (GitRebaseStartCommand *self)
diff --git a/plugins/git/git-ref-command.c b/plugins/git/git-ref-command.c
index 6f1818b..00a062a 100644
--- a/plugins/git/git-ref-command.c
+++ b/plugins/git/git-ref-command.c
@@ -37,7 +37,7 @@ struct _GitRefCommandPriv
        GHashTable *file_monitors;
 };
 
-G_DEFINE_TYPE (GitRefCommand, git_ref_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitRefCommand, git_ref_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 free_refs_list (GList *refs)
diff --git a/plugins/git/git-remote-add-command.c b/plugins/git/git-remote-add-command.c
index bbae63b..3b8e2da 100644
--- a/plugins/git/git-remote-add-command.c
+++ b/plugins/git/git-remote-add-command.c
@@ -31,7 +31,7 @@ struct _GitRemoteAddCommandPriv
        gboolean fetch;
 };
 
-G_DEFINE_TYPE (GitRemoteAddCommand, git_remote_add_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitRemoteAddCommand, git_remote_add_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_remote_add_command_init (GitRemoteAddCommand *self)
diff --git a/plugins/git/git-remote-delete-command.c b/plugins/git/git-remote-delete-command.c
index 7fa36eb..5e1c3e5 100644
--- a/plugins/git/git-remote-delete-command.c
+++ b/plugins/git/git-remote-delete-command.c
@@ -29,7 +29,7 @@ struct _GitRemoteDeleteCommandPriv
        gchar *name;
 };
 
-G_DEFINE_TYPE (GitRemoteDeleteCommand, git_remote_delete_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitRemoteDeleteCommand, git_remote_delete_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_remote_delete_command_init (GitRemoteDeleteCommand *self)
diff --git a/plugins/git/git-remove-command.c b/plugins/git/git-remove-command.c
index 4f89b23..9634dd7 100644
--- a/plugins/git/git-remove-command.c
+++ b/plugins/git/git-remove-command.c
@@ -30,7 +30,7 @@ struct _GitRemoveCommandPriv
        gboolean force;
 };
 
-G_DEFINE_TYPE (GitRemoveCommand, git_remove_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitRemoveCommand, git_remove_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_remove_command_init (GitRemoveCommand *self)
diff --git a/plugins/git/git-reset-files-command.c b/plugins/git/git-reset-files-command.c
index bf0a82f..df356df 100644
--- a/plugins/git/git-reset-files-command.c
+++ b/plugins/git/git-reset-files-command.c
@@ -30,7 +30,7 @@ struct _GitResetFilesCommandPriv
        gchar *revision;
 };
 
-G_DEFINE_TYPE (GitResetFilesCommand, git_reset_files_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitResetFilesCommand, git_reset_files_command, GIT_TYPE_PROCESS_COMMAND);
 
 static guint
 git_reset_files_command_run (AnjutaCommand *command)
diff --git a/plugins/git/git-reset-tree-command.c b/plugins/git/git-reset-tree-command.c
index 501a1b6..3432af5 100644
--- a/plugins/git/git-reset-tree-command.c
+++ b/plugins/git/git-reset-tree-command.c
@@ -30,7 +30,7 @@ struct _GitResetTreeCommandPriv
        GitResetTreeMode mode;
 };
 
-G_DEFINE_TYPE (GitResetTreeCommand, git_reset_tree_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitResetTreeCommand, git_reset_tree_command, GIT_TYPE_PROCESS_COMMAND);
 
 static guint
 git_reset_tree_command_run (AnjutaCommand *command)
diff --git a/plugins/git/git-revert-command.c b/plugins/git/git-revert-command.c
index a4ff89a..0d3f7aa 100644
--- a/plugins/git/git-revert-command.c
+++ b/plugins/git/git-revert-command.c
@@ -30,7 +30,7 @@ struct _GitRevertCommandPriv
        gboolean no_commit;
 };
 
-G_DEFINE_TYPE (GitRevertCommand, git_revert_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitRevertCommand, git_revert_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_revert_command_init (GitRevertCommand *self)
diff --git a/plugins/git/git-stash-apply-command.c b/plugins/git/git-stash-apply-command.c
index e91519c..1c4b2dd 100644
--- a/plugins/git/git-stash-apply-command.c
+++ b/plugins/git/git-stash-apply-command.c
@@ -25,7 +25,7 @@ struct _GitStashApplyCommandPriv
        gchar *stash;
 };
 
-G_DEFINE_TYPE (GitStashApplyCommand, git_stash_apply_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitStashApplyCommand, git_stash_apply_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_stash_apply_command_init (GitStashApplyCommand *self)
diff --git a/plugins/git/git-stash-clear-command.c b/plugins/git/git-stash-clear-command.c
index 6886434..93bb81b 100644
--- a/plugins/git/git-stash-clear-command.c
+++ b/plugins/git/git-stash-clear-command.c
@@ -25,7 +25,7 @@
 #include "git-stash-clear-command.h"
 
 G_DEFINE_TYPE (GitStashClearCommand, git_stash_clear_command, 
-                          GIT_TYPE_COMMAND);
+                          GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_stash_clear_command_init (GitStashClearCommand *self)
diff --git a/plugins/git/git-stash-drop-command.c b/plugins/git/git-stash-drop-command.c
index 3a4bd05..64364fd 100644
--- a/plugins/git/git-stash-drop-command.c
+++ b/plugins/git/git-stash-drop-command.c
@@ -30,7 +30,7 @@ struct _GitStashDropCommandPriv
 };
 
 G_DEFINE_TYPE (GitStashDropCommand, git_stash_drop_command, 
-                          GIT_TYPE_COMMAND);
+                          GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_stash_drop_command_init (GitStashDropCommand *self)
diff --git a/plugins/git/git-stash-list-command.c b/plugins/git/git-stash-list-command.c
index 5978442..1799f91 100644
--- a/plugins/git/git-stash-list-command.c
+++ b/plugins/git/git-stash-list-command.c
@@ -34,7 +34,7 @@ struct _GitStashListCommandPriv
        GFileMonitor *file_monitor;
 };
 
-G_DEFINE_TYPE (GitStashListCommand, git_stash_list_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitStashListCommand, git_stash_list_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_stash_list_command_init (GitStashListCommand *self)
diff --git a/plugins/git/git-stash-save-command.c b/plugins/git/git-stash-save-command.c
index 398f6df..69c7d14 100644
--- a/plugins/git/git-stash-save-command.c
+++ b/plugins/git/git-stash-save-command.c
@@ -25,7 +25,7 @@ struct _GitStashSaveCommandPriv
        gchar *message;
 };
 
-G_DEFINE_TYPE (GitStashSaveCommand, git_stash_save_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitStashSaveCommand, git_stash_save_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_stash_save_command_init (GitStashSaveCommand *self)
diff --git a/plugins/git/git-status-command.c b/plugins/git/git-status-command.c
index eeb81c7..7679985 100644
--- a/plugins/git/git-status-command.c
+++ b/plugins/git/git-status-command.c
@@ -37,7 +37,7 @@ struct _GitStatusCommandPriv
        GFileMonitor *index_monitor;
 };
 
-G_DEFINE_TYPE (GitStatusCommand, git_status_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitStatusCommand, git_status_command, GIT_TYPE_PROCESS_COMMAND);
 
 static guint
 git_status_command_run (AnjutaCommand *command)
diff --git a/plugins/git/git-tag-create-command.c b/plugins/git/git-tag-create-command.c
index abf2580..773c9f1 100644
--- a/plugins/git/git-tag-create-command.c
+++ b/plugins/git/git-tag-create-command.c
@@ -33,7 +33,7 @@ struct _GitTagCreateCommandPriv
        gboolean force;
 };
 
-G_DEFINE_TYPE (GitTagCreateCommand, git_tag_create_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitTagCreateCommand, git_tag_create_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_tag_create_command_init (GitTagCreateCommand *self)
diff --git a/plugins/git/git-tag-delete-command.c b/plugins/git/git-tag-delete-command.c
index 769080a..e8777f6 100644
--- a/plugins/git/git-tag-delete-command.c
+++ b/plugins/git/git-tag-delete-command.c
@@ -29,7 +29,7 @@ struct _GitTagDeleteCommandPriv
        GList *tags;
 };
 
-G_DEFINE_TYPE (GitTagDeleteCommand, git_tag_delete_command, GIT_TYPE_COMMAND);
+G_DEFINE_TYPE (GitTagDeleteCommand, git_tag_delete_command, GIT_TYPE_PROCESS_COMMAND);
 
 static void
 git_tag_delete_command_init (GitTagDeleteCommand *self)


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