aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/gui/component/addressbook-migrate.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 7035deff71..92874daf88 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,8 @@
+2004-04-28 Jeffrey Stedfast <fejj@ximian.com>
+
+ * gui/component/addressbook-migrate.c: We need a migration dialog
+ if the revision <= 10. Fixes bug #57770.
+
2004-04-27 Larry Ewing <lewing@ximian.com>
* gui/component/addressbook-config.c: remove debug spew.
diff --git a/addressbook/gui/component/addressbook-migrate.c b/addressbook/gui/component/addressbook-migrate.c
index a6b21899bf..f757e9f3c5 100644
--- a/addressbook/gui/component/addressbook-migrate.c
+++ b/addressbook/gui/component/addressbook-migrate.c
@@ -1062,7 +1062,7 @@ addressbook_migrate (AddressbookComponent *component, int major, int minor, int
if (major == 1
/* we only need the most recent upgrade point here.
further decomposition will happen below. */
- && (minor < 5 || (minor == 5 && revision <= 8)))
+ && (minor < 5 || (minor == 5 && revision <= 10))
need_dialog = TRUE;
if (need_dialog)