aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-calendar-table.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/e-calendar-table.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/e-calendar-table.h')
-rw-r--r--calendar/gui/e-calendar-table.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/calendar/gui/e-calendar-table.h b/calendar/gui/e-calendar-table.h
index 70dd031174..810c78254b 100644
--- a/calendar/gui/e-calendar-table.h
+++ b/calendar/gui/e-calendar-table.h
@@ -26,7 +26,6 @@
#include <gtk/gtktable.h>
#include <gal/e-table/e-table-scrolled.h>
-#include <shell/evolution-activity-client.h>
#include <widgets/misc/e-cell-date-edit.h>
#include "e-cal-model.h"
@@ -63,8 +62,8 @@ struct _ECalendarTable {
gchar *clipboard_selection;
icalcomponent *tmp_vcal;
- /* The activity client used to show messages on the status bar. */
- EvolutionActivityClient *activity;
+ /* Activity ID for the EActivityHandler (i.e. the status bar). */
+ guint activity_id;
};
struct _ECalendarTableClass {