diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-14 01:57:46 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-14 01:57:46 +0800 |
commit | 79aa45cfed7e87150de85869795ef0dd3be06db0 (patch) | |
tree | 422b9e6c3840747ffb243d596d4459514ec3a457 /shell/e-shell-window.c | |
parent | 1bed00795bf092ad6e9e076eccf7cc2a8c20cb27 (diff) | |
download | gsoc2013-evolution-79aa45cfed7e87150de85869795ef0dd3be06db0.tar.gz gsoc2013-evolution-79aa45cfed7e87150de85869795ef0dd3be06db0.tar.zst gsoc2013-evolution-79aa45cfed7e87150de85869795ef0dd3be06db0.zip |
Progress update:
- Calendar is kind of a mess at the moment. Doesn't compile.
- Roughed in the Mail module, including all the actions.
That _does_ compile. Runs, even.
svn path=/branches/kill-bonobo/; revision=36611
Diffstat (limited to 'shell/e-shell-window.c')
-rw-r--r-- | shell/e-shell-window.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 427e1311a0..0d54b92bd8 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -215,6 +215,12 @@ shell_window_finalize (GObject *object) } static void +shell_window_constructed (GObject *object) +{ + e_shell_window_private_constructed (E_SHELL_WINDOW (object)); +} + +static void shell_window_class_init (EShellWindowClass *class) { GObjectClass *object_class; @@ -227,6 +233,7 @@ shell_window_class_init (EShellWindowClass *class) object_class->get_property = shell_window_get_property; object_class->dispose = shell_window_dispose; object_class->finalize = shell_window_finalize; + object_class->constructed = shell_window_constructed; /** * EShellWindow:active-view |