diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-12 11:31:55 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-12 11:31:55 +0800 |
commit | 97a9bd320d00f4a194d6948cf9d54435b04a331e (patch) | |
tree | 6490e90bc2ebb3bd274a902de4411e26ec355bcb /addressbook/gui/component/addressbook-migrate.h | |
parent | e406cdcf602c6580c7d129796a9a3a15818251f5 (diff) | |
download | gsoc2013-evolution-97a9bd320d00f4a194d6948cf9d54435b04a331e.tar.gz gsoc2013-evolution-97a9bd320d00f4a194d6948cf9d54435b04a331e.tar.zst gsoc2013-evolution-97a9bd320d00f4a194d6948cf9d54435b04a331e.zip |
set exception properly on failure.
2004-05-11 Not Zed <NotZed@Ximian.com>
* gui/component/addressbook-component.c (impl_upgradeFromVersion):
set exception properly on failure.
* gui/component/addressbook-migrate.c (addressbook_migrate): take
a GError error return. Doesn't do anything with it ... but ...
svn path=/trunk/; revision=25864
Diffstat (limited to 'addressbook/gui/component/addressbook-migrate.h')
-rw-r--r-- | addressbook/gui/component/addressbook-migrate.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook-migrate.h b/addressbook/gui/component/addressbook-migrate.h index 89dce7a91b..dc7c473e12 100644 --- a/addressbook/gui/component/addressbook-migrate.h +++ b/addressbook/gui/component/addressbook-migrate.h @@ -24,6 +24,8 @@ #include "addressbook-component.h" -int addressbook_migrate (AddressbookComponent *component, int major, int minor, int revision); +struct _GError; + +int addressbook_migrate (AddressbookComponent *component, int major, int minor, int revision, struct _GError **err); #endif /* _ADDRESSBOOK_MIGRATE_H_ */ |