diff options
author | Irene Huang <Irene.Huang@sun.com> | 2005-11-16 19:13:31 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2005-11-16 19:13:31 +0800 |
commit | f3393b1111bbc2d4147f5420f8df8a86436db814 (patch) | |
tree | 9dc07601821a4485da2945ba8067593397d3861d /calendar | |
parent | 448630b96dd17fa82fc7e4da57f87ae8d18c2923 (diff) | |
download | gsoc2013-evolution-f3393b1111bbc2d4147f5420f8df8a86436db814.tar gsoc2013-evolution-f3393b1111bbc2d4147f5420f8df8a86436db814.tar.gz gsoc2013-evolution-f3393b1111bbc2d4147f5420f8df8a86436db814.tar.bz2 gsoc2013-evolution-f3393b1111bbc2d4147f5420f8df8a86436db814.tar.lz gsoc2013-evolution-f3393b1111bbc2d4147f5420f8df8a86436db814.tar.xz gsoc2013-evolution-f3393b1111bbc2d4147f5420f8df8a86436db814.tar.zst gsoc2013-evolution-f3393b1111bbc2d4147f5420f8df8a86436db814.zip |
struct _ECalModelMemosPrivate should not be zero sized.
2005-11-16 Irene Huang <Irene.Huang@sun.com>
* gui/e-cal-model-memos.c: struct _ECalModelMemosPrivate
should not be zero sized.
svn path=/trunk/; revision=30623
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/e-cal-model-memos.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 72e1c21696..090ab33535 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2005-11-16 Irene Huang <Irene.Huang@sun.com> + + * gui/e-cal-model-memos.c: struct _ECalModelMemosPrivate + should not be zero sized. + 2005-11-16 Irene Huang <Irene.Huang@sun.com> * gui/dialogs/cal-prefs-dialog.c: diff --git a/calendar/gui/e-cal-model-memos.c b/calendar/gui/e-cal-model-memos.c index d4cf6fc2b3..0f8dc020a1 100644 --- a/calendar/gui/e-cal-model-memos.c +++ b/calendar/gui/e-cal-model-memos.c @@ -33,6 +33,7 @@ #define d(x) (x) struct _ECalModelMemosPrivate { + int dummy; }; static void e_cal_model_memos_finalize (GObject *object); |