Fix search/replace mistakes...AnjutaSyncCommand should compile now.
[anjuta-git-plugin.git] / libanjuta / anjuta-sync-command.c
blob44b44cdbfc0e886c3badab535b6b17be4c656b1e
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * anjuta
4 * Copyright (C) James Liggett 2007 <jrliggett@cox.net>
5 *
6 * anjuta is free software.
7 *
8 * You may redistribute it and/or modify it under the terms of the
9 * GNU General Public License, as published by the Free Software
10 * Foundation; either version 2 of the License, or (at your option)
11 * any later version.
13 * anjuta is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 * See the GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with anjuta. If not, write to:
20 * The Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02110-1301, USA.
25 #include "anjuta-sync-command.h"
27 G_DEFINE_TYPE (AnjutaSyncCommand, anjuta_sync_command, ANJUTA_TYPE_COMMAND);
29 static void
30 anjuta_sync_command_init (AnjutaSyncCommand *self)
35 static void
36 anjuta_sync_command_finalize (GObject *object)
38 G_OBJECT_CLASS (anjuta_sync_command_parent_class)->finalize (object);
41 static void
42 start_command (AnjutaCommand *command)
44 guint return_code;
46 return_code = ANJUTA_COMMAND_GET_CLASS (command)->run (command);
47 anjuta_command_notify_complete (command, return_code);
50 static void
51 notify_data_arrived (AnjutaCommand *command)
53 g_signal_emit_by_name (command, "data-arrived");
56 static void
57 notify_complete (AnjutaCommand *command, guint return_code)
59 g_signal_emit_by_name (command, "command-finished",
60 return_code);
63 static void
64 anjuta_sync_command_class_init (AnjutaSyncCommandClass *klass)
66 GObjectClass* object_class = G_OBJECT_CLASS (klass);
67 AnjutaCommandClass* parent_class = ANJUTA_COMMAND_CLASS (klass);
69 object_class->finalize = anjuta_sync_command_finalize;
71 parent_class->start = start_command;
72 parent_class->notify_data_arrived = notify_data_arrived;
73 parent_class->notify_complete = notify_complete;