diff options
author | Milan Crha <mcrha@redhat.com> | 2009-12-23 19:03:58 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-12-23 19:03:58 +0800 |
commit | 3b199d9db06045583627660c0b2a9b6419300fb2 (patch) | |
tree | a890084c76a1b7d399cd8f871a5d6175b3567a66 /shell/e-shell-window-private.c | |
parent | 6ba2bdcb5134c15af4f370a75240e54288210331 (diff) | |
download | gsoc2013-evolution-3b199d9db06045583627660c0b2a9b6419300fb2.tar gsoc2013-evolution-3b199d9db06045583627660c0b2a9b6419300fb2.tar.gz gsoc2013-evolution-3b199d9db06045583627660c0b2a9b6419300fb2.tar.bz2 gsoc2013-evolution-3b199d9db06045583627660c0b2a9b6419300fb2.tar.lz gsoc2013-evolution-3b199d9db06045583627660c0b2a9b6419300fb2.tar.xz gsoc2013-evolution-3b199d9db06045583627660c0b2a9b6419300fb2.tar.zst gsoc2013-evolution-3b199d9db06045583627660c0b2a9b6419300fb2.zip |
Reverting commit 55c3f228ad35 because it's crashing Evolution
Diffstat (limited to 'shell/e-shell-window-private.c')
-rw-r--r-- | shell/e-shell-window-private.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-window-private.c b/shell/e-shell-window-private.c index b26ac97727..0d9dda59cb 100644 --- a/shell/e-shell-window-private.c +++ b/shell/e-shell-window-private.c @@ -159,7 +159,7 @@ shell_window_construct_menubar (EShellWindow *shell_window) { EShellWindowClass *class; - class = g_type_class_peek_parent(E_SHELL_WINDOW_GET_CLASS (shell_window)); + class = E_SHELL_WINDOW_GET_CLASS (shell_window); if (class->construct_menubar == NULL) return NULL; @@ -171,7 +171,7 @@ shell_window_construct_toolbar (EShellWindow *shell_window) { EShellWindowClass *class; - class = g_type_class_peek_parent (E_SHELL_WINDOW_GET_CLASS (shell_window)); + class = E_SHELL_WINDOW_GET_CLASS (shell_window); if (class->construct_toolbar == NULL) return NULL; |