aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-component.h
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-12-02 13:24:02 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-12-02 13:24:02 +0800
commit49e7dd311ec4652cbd87fe6f7627c54ab20f4782 (patch)
treede7f360836c95134d1c57a52391a7fb4ee58388e /calendar/gui/calendar-component.h
parent89dc17247f41b4d82f4a973fa6f4a8358cd0f42c (diff)
downloadgsoc2013-evolution-49e7dd311ec4652cbd87fe6f7627c54ab20f4782.tar
gsoc2013-evolution-49e7dd311ec4652cbd87fe6f7627c54ab20f4782.tar.gz
gsoc2013-evolution-49e7dd311ec4652cbd87fe6f7627c54ab20f4782.tar.bz2
gsoc2013-evolution-49e7dd311ec4652cbd87fe6f7627c54ab20f4782.tar.lz
gsoc2013-evolution-49e7dd311ec4652cbd87fe6f7627c54ab20f4782.tar.xz
gsoc2013-evolution-49e7dd311ec4652cbd87fe6f7627c54ab20f4782.tar.zst
gsoc2013-evolution-49e7dd311ec4652cbd87fe6f7627c54ab20f4782.zip
Replace member "activity" with an "activity_id".
* gui/e-calendar-table.h (struct _ECalendarTable): Replace member "activity" with an "activity_id". * gui/e-cal-view.c (struct _ECalendarViewPrivate): Replace member "activity" with "activity_id". (e_calendar_view_destroy): Don't unref activity here anymore. (e_calendar_view_set_status_message): Report progress using the EActivityHandler off the CalendarComponent. * gui/calendar-component.c (struct _CalendarComponentPrivate): New member activity_handler. (calendar_component_init): Init. (calendar_component_peek_activity_handler): New. (impl_dispose): Unref. (impl_createControls): Return an ETaskBar for the statusbar control. svn path=/trunk/; revision=23565
Diffstat (limited to 'calendar/gui/calendar-component.h')
-rw-r--r--calendar/gui/calendar-component.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/calendar/gui/calendar-component.h b/calendar/gui/calendar-component.h
index 8b51720446..77d2fe9879 100644
--- a/calendar/gui/calendar-component.h
+++ b/calendar/gui/calendar-component.h
@@ -26,6 +26,8 @@
#include <bonobo/bonobo-object.h>
#include <libedataserver/e-source-list.h>
+
+#include "e-activity-handler.h"
#include "Evolution.h"
@@ -57,9 +59,9 @@ GType calendar_component_get_type (void);
CalendarComponent *calendar_component_peek (void);
-const char *calendar_component_peek_config_directory (CalendarComponent *component);
-
-ESourceList *calendar_component_peek_source_list (CalendarComponent *component);
+const char *calendar_component_peek_config_directory (CalendarComponent *component);
+ESourceList *calendar_component_peek_source_list (CalendarComponent *component);
+EActivityHandler *calendar_component_peek_activity_handler (CalendarComponent *component);
#endif /* _CALENDAR_COMPONENT_H_ */