diff options
author | Miguel de Icaza <miguel@gnu.org> | 2000-01-16 04:08:30 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 2000-01-16 04:08:30 +0800 |
commit | 3c49032de459fa26e8512005b859c8eb8768caf8 (patch) | |
tree | 31c06aa6698678a67d41532a60b270fb6b492793 /shell/e-shell.h | |
parent | 19a9abb138faf5f77afdca76670a23a476a7a922 (diff) | |
download | gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar.gz gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar.bz2 gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar.lz gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar.xz gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar.zst gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.zip |
Use e_bar_set_item_data.
2000-01-10 Miguel de Icaza <miguel@gnu.org>
* widgets/shortcut-bar/e-shortcut-bar.c (e_shortcut_bar_add_item):
Use e_bar_set_item_data.
Drop item_url; Require image argument; Require user data
argument.
2000-01-09 Miguel de Icaza <miguel@gnu.org>
* widgets/shortcut-bar/e-icon-bar.c (e_icon_bar_init): Turn on anti-aliasing.
svn path=/trunk/; revision=1573
Diffstat (limited to 'shell/e-shell.h')
-rw-r--r-- | shell/e-shell.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/e-shell.h b/shell/e-shell.h index c8d59d31b7..7cd5ac08eb 100644 --- a/shell/e-shell.h +++ b/shell/e-shell.h @@ -3,6 +3,7 @@ #include <bonobo/gnome-object.h> #include "evolution.h" +#include "e-folder.h" #define E_SHELL_GOAD_ID "GOADID:GNOME:Evolution:Shell:1.0" #define E_SHELL_FACTORY_GOAD_ID "GOADID:GNOME:Evolution:ShellFactory:1.0" @@ -18,6 +19,14 @@ struct _EShell { /* A list of EShellViews */ GSList *views; + + struct { + EFolder *inbox; + EFolder *outbox; + EFolder *drafts; + EFolder *calendar; + EFolder *tasks; + } default_folders; }; typedef struct { |