diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-07-14 04:56:00 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-07-14 22:26:47 +0800 |
commit | d3de5757b511f5319588322a9c2bcdcd23cc8bb6 (patch) | |
tree | 10fa752c84e1587d6413a6799b30083f29528aad /shell/test | |
parent | 902384a3419e107e3179c6b9c5e63193dd0f272b (diff) | |
download | gsoc2013-evolution-d3de5757b511f5319588322a9c2bcdcd23cc8bb6.tar.gz gsoc2013-evolution-d3de5757b511f5319588322a9c2bcdcd23cc8bb6.tar.zst gsoc2013-evolution-d3de5757b511f5319588322a9c2bcdcd23cc8bb6.zip |
Version check for the deprecation workaround was off by one.
Diffstat (limited to 'shell/test')
-rw-r--r-- | shell/test/e-test-shell-backend.c | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/shell/test/e-test-shell-backend.c b/shell/test/e-test-shell-backend.c index e5fd3c6a43..6a6c03bddd 100644 --- a/shell/test/e-test-shell-backend.c +++ b/shell/test/e-test-shell-backend.c @@ -80,22 +80,6 @@ test_shell_backend_start (EShellBackend *shell_backend) } static gboolean -test_shell_backend_is_busy (EShellBackend *shell_backend) -{ - g_debug ("%s", G_STRFUNC); - - return FALSE; -} - -static gboolean -test_shell_backend_shutdown (EShellBackend *shell_backend) -{ - g_debug ("%s", G_STRFUNC); - - return TRUE; -} - -static gboolean test_shell_backend_migrate (EShellBackend *shell_backend, gint major, gint minor, @@ -151,7 +135,7 @@ test_shell_backend_window_destroyed_cb (EShellBackend *shell_backend) g_debug ("%s", G_STRFUNC); } -void +static void test_shell_backend_constructed (GObject *object) { EShell *shell; @@ -200,8 +184,6 @@ test_shell_backend_class_init (ETestShellBackendClass *class) shell_backend_class->schemes = ""; shell_backend_class->sort_order = 100; shell_backend_class->start = test_shell_backend_start; - shell_backend_class->is_busy = test_shell_backend_is_busy; - shell_backend_class->shutdown = test_shell_backend_shutdown; shell_backend_class->migrate = test_shell_backend_migrate; } |