diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-11 09:05:38 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-11 09:05:38 +0800 |
commit | ebec065334b5cf943591527254d628c13d06c369 (patch) | |
tree | 1bb372e3f52c52f95cdaa2ed8913743105534dbc /shell/e-shell.c | |
parent | e48ac5d4f23be78a7da69660f20bc0f04157258e (diff) | |
download | gsoc2013-evolution-ebec065334b5cf943591527254d628c13d06c369.tar.gz gsoc2013-evolution-ebec065334b5cf943591527254d628c13d06c369.tar.zst gsoc2013-evolution-ebec065334b5cf943591527254d628c13d06c369.zip |
Add a few stub functions to get compilation to complete.
Kill e-active-connection-dialog.glade (unused).
svn path=/branches/kill-bonobo/; revision=35950
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 25572dbcdc..a91c06dbe7 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -159,6 +159,31 @@ e_shell_handle_uri (const gchar *uri) return e_shell_module_handle_uri (shell_module, uri); } +void +e_shell_send_receive (GtkWindow *parent) +{ + /* FIXME */ +} + +void +e_shell_go_offline (void) +{ + /* FIXME */ +} + +void +e_shell_go_online (void) +{ + /* FIXME */ +} + +EShellLineStatus +e_shell_get_line_status (void) +{ + /* FIXME */ + return E_SHELL_LINE_STATUS_ONLINE; +} + GtkWidget * e_shell_get_preferences_window (void) { @@ -169,3 +194,24 @@ e_shell_get_preferences_window (void) return preferences_window; } + +gboolean +e_shell_is_busy (void) +{ + /* FIXME */ + return FALSE; +} + +gboolean +e_shell_do_quit (void) +{ + /* FIXME */ + return TRUE; +} + +gboolean +e_shell_quit (void) +{ + /* FIXME */ + return TRUE; +} |