diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-03-30 11:38:36 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-03-30 11:38:36 +0800 |
commit | 8a1f639a670696e71daac8305ae0823668d29a14 (patch) | |
tree | 3b7c8ec8f856095865211a40ebcaf33ca572d94f /shell/e-shell.c | |
parent | bc4f60ba176b64cc8fd8ffa47a01542f8eb25bdf (diff) | |
download | gsoc2013-evolution-8a1f639a670696e71daac8305ae0823668d29a14.tar.gz gsoc2013-evolution-8a1f639a670696e71daac8305ae0823668d29a14.tar.zst gsoc2013-evolution-8a1f639a670696e71daac8305ae0823668d29a14.zip |
Saving progress again on the attachment rewrite.
svn path=/branches/kill-bonobo/; revision=37482
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 5de46bcc65..49292c0c35 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -801,7 +801,17 @@ shell_class_init (EShellClass *class) g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); - /* Install some desktop-wide settings. */ + /* Install some application-wide settings. */ + + e_shell_settings_install_property ( + g_param_spec_int ( + "attachment-view", + NULL, + NULL, + 0, + 1, + 0, + G_PARAM_READWRITE)); e_shell_settings_install_property ( g_param_spec_boolean ( @@ -842,6 +852,14 @@ shell_class_init (EShellClass *class) NULL, FALSE, G_PARAM_READWRITE)); + + e_shell_settings_install_property ( + g_param_spec_string ( + "file-chooser-folder", + NULL, + NULL, + NULL, + G_PARAM_READWRITE)); } static void |