diff options
author | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-10-10 18:50:18 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-10-10 18:50:18 +0800 |
commit | 56a166bb42bd55216a489c0b850ddd6bca2a3cd5 (patch) | |
tree | 3f87cf07fd6098ab2700c56d71d97686c5e5bc71 /shell/test/e-test-shell-backend.c | |
parent | 8fd93c9042bb30e53ce88303f8a0789a6ca688eb (diff) | |
parent | 6d5db4c7cd468d424ea8628344c5a1bba6fc3d7c (diff) | |
download | gsoc2013-evolution-56a166bb42bd55216a489c0b850ddd6bca2a3cd5.tar.gz gsoc2013-evolution-56a166bb42bd55216a489c0b850ddd6bca2a3cd5.tar.zst gsoc2013-evolution-56a166bb42bd55216a489c0b850ddd6bca2a3cd5.zip |
Merge branch 'master' into wip/gsettings
Diffstat (limited to 'shell/test/e-test-shell-backend.c')
-rw-r--r-- | shell/test/e-test-shell-backend.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/shell/test/e-test-shell-backend.c b/shell/test/e-test-shell-backend.c index a30cb8a7b5..79f4aa876f 100644 --- a/shell/test/e-test-shell-backend.c +++ b/shell/test/e-test-shell-backend.c @@ -97,8 +97,8 @@ test_shell_backend_handle_uri_cb (EShellBackend *shell_backend, } static void -test_shell_backend_window_created_cb (EShellBackend *shell_backend, - GtkWindow *window) +test_shell_backend_window_added_cb (EShellBackend *shell_backend, + GtkWindow *window) { const gchar *backend_name; @@ -119,7 +119,7 @@ test_shell_backend_window_created_cb (EShellBackend *shell_backend, } static void -test_shell_backend_window_destroyed_cb (EShellBackend *shell_backend) +test_shell_backend_window_removed_cb (EShellBackend *shell_backend) { g_debug ("%s", G_STRFUNC); } @@ -139,13 +139,13 @@ test_shell_backend_constructed (GObject *object) shell_backend); g_signal_connect_swapped ( - shell, "window-created", - G_CALLBACK (test_shell_backend_window_created_cb), + shell, "window-added", + G_CALLBACK (test_shell_backend_window_added_cb), shell_backend); g_signal_connect_swapped ( - shell, "window-destroyed", - G_CALLBACK (test_shell_backend_window_destroyed_cb), + shell, "window-removed", + G_CALLBACK (test_shell_backend_window_removed_cb), shell_backend); /* Chain up to parent's constructed() method. */ |