diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-09-12 09:54:07 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-09-12 09:54:07 +0800 |
commit | df6a8262a141e0bec824149e7f65568d2187c5c2 (patch) | |
tree | 463604008060e542f3dcdbfdd5fce4e056af8c1c /calendar/gui/e-cal-shell-view.h | |
parent | cbe90f148abbfd273f301358c7fa73a58ff5dd41 (diff) | |
download | gsoc2013-evolution-df6a8262a141e0bec824149e7f65568d2187c5c2.tar.gz gsoc2013-evolution-df6a8262a141e0bec824149e7f65568d2187c5c2.tar.zst gsoc2013-evolution-df6a8262a141e0bec824149e7f65568d2187c5c2.zip |
Arrange for an ESourceList to be shared amongst all instances of a type of
shell view. For example, all EBookShellView instances will now share the
same ESourceList instance for address books.
svn path=/branches/kill-bonobo/; revision=36311
Diffstat (limited to 'calendar/gui/e-cal-shell-view.h')
-rw-r--r-- | calendar/gui/e-cal-shell-view.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/calendar/gui/e-cal-shell-view.h b/calendar/gui/e-cal-shell-view.h index d0078b041c..14ce530c61 100644 --- a/calendar/gui/e-cal-shell-view.h +++ b/calendar/gui/e-cal-shell-view.h @@ -22,6 +22,7 @@ #define E_CAL_SHELL_VIEW_H #include <e-shell-view.h> +#include <libedataserver/e-source-list.h> /* Standard GObject macros */ #define E_TYPE_CAL_SHELL_VIEW \ @@ -59,7 +60,10 @@ struct _ECalShellViewClass { EShellViewClass parent_class; }; -GType e_cal_shell_view_get_type (GTypeModule *type_module); +GType e_cal_shell_view_get_type + (GTypeModule *type_module); +ESourceList * e_cal_shell_view_get_source_list + (ECalShellView *cal_shell_view); G_END_DECLS |