diff options
-rw-r--r-- | shell/e-shell.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 595be5d55c..bd18eba611 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -1350,6 +1350,19 @@ e_shell_go_online (EShell *shell, } +void +e_shell_unregister_all (EShell *shell) +{ + EShellPrivate *priv; + + g_return_if_fail (E_IS_SHELL (shell)); + + priv = shell->priv; + +#error "Implement me" +} + + E_MAKE_X_TYPE (e_shell, "EShell", EShell, class_init, init, PARENT_TYPE, POA_GNOME_Evolution_Shell__init, |