diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-12 11:32:19 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-12 11:32:19 +0800 |
commit | 63ca6c19ab323142c1362afe95f6acf1259d2ecf (patch) | |
tree | 7fc3bc513a980f35e126543154dd908ae1b1a448 /calendar/gui/migration.h | |
parent | 97a9bd320d00f4a194d6948cf9d54435b04a331e (diff) | |
download | gsoc2013-evolution-63ca6c19ab323142c1362afe95f6acf1259d2ecf.tar.gz gsoc2013-evolution-63ca6c19ab323142c1362afe95f6acf1259d2ecf.tar.zst gsoc2013-evolution-63ca6c19ab323142c1362afe95f6acf1259d2ecf.zip |
add GError return for error details & return errors.
2004-05-11 Not Zed <NotZed@Ximian.com>
* gui/migration.c (migrate_calendars, migrate_tasks): add GError
return for error details & return errors.
* gui/calendar-component.c (impl_upgradeFromVersion): fix for api
change, and erturn exception if we need to.
svn path=/trunk/; revision=25865
Diffstat (limited to 'calendar/gui/migration.h')
-rw-r--r-- | calendar/gui/migration.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/calendar/gui/migration.h b/calendar/gui/migration.h index b7047d0898..1092e30c14 100644 --- a/calendar/gui/migration.h +++ b/calendar/gui/migration.h @@ -27,7 +27,9 @@ #include "calendar-component.h" #include "tasks-component.h" -gboolean migrate_calendars (CalendarComponent *component, int major, int minor, int revision); -gboolean migrate_tasks (TasksComponent *component, int major, int minor, int revision); +struct _GError; + +gboolean migrate_calendars (CalendarComponent *component, int major, int minor, int revision, struct _GError **err); +gboolean migrate_tasks (TasksComponent *component, int major, int minor, int revision, struct _GError **err); #endif |