From a92c3cfaa187399d1076da0e5188bde2eeb00a7d Mon Sep 17 00:00:00 2001 From: James Liggett Date: Tue, 1 Apr 2008 14:46:59 -0700 Subject: [PATCH] Fix search/replace mistakes...AnjutaSyncCommand should compile now. --- libanjuta/anjuta-sync-command.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libanjuta/anjuta-sync-command.c b/libanjuta/anjuta-sync-command.c index 4d9b9964..44b44cdb 100644 --- a/libanjuta/anjuta-sync-command.c +++ b/libanjuta/anjuta-sync-command.c @@ -27,7 +27,7 @@ G_DEFINE_TYPE (AnjutaSyncCommand, anjuta_sync_command, ANJUTA_TYPE_COMMAND); static void -anjuta_sync_command_init (AnjutaSyncAnjutaCommand *self) +anjuta_sync_command_init (AnjutaSyncCommand *self) { } @@ -43,8 +43,8 @@ start_command (AnjutaCommand *command) { guint return_code; - return_code = COMMAND_GET_CLASS (command)->run (command); - command_notify_complete (command, return_code); + return_code = ANJUTA_COMMAND_GET_CLASS (command)->run (command); + anjuta_command_notify_complete (command, return_code); } static void @@ -61,12 +61,12 @@ notify_complete (AnjutaCommand *command, guint return_code) } static void -anjuta_sync_command_class_init (AnjutaSyncAnjutaCommandClass *klass) +anjuta_sync_command_class_init (AnjutaSyncCommandClass *klass) { GObjectClass* object_class = G_OBJECT_CLASS (klass); AnjutaCommandClass* parent_class = ANJUTA_COMMAND_CLASS (klass); - object_class->finalize = anjuta_anjuta_sync_command_finalize; + object_class->finalize = anjuta_sync_command_finalize; parent_class->start = start_command; parent_class->notify_data_arrived = notify_data_arrived; -- 2.11.4.GIT