diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-28 22:49:17 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-28 22:49:17 +0800 |
commit | bf88ab2e6fc127f98c0d87fc3658670e2fd0a630 (patch) | |
tree | 2a9082d1a3acf9389990d5586676b9ca65702348 /addressbook | |
parent | ca232381199b009fc17a80dfa9652d6c8a18e471 (diff) | |
download | gsoc2013-evolution-bf88ab2e6fc127f98c0d87fc3658670e2fd0a630.tar.gz gsoc2013-evolution-bf88ab2e6fc127f98c0d87fc3658670e2fd0a630.tar.zst gsoc2013-evolution-bf88ab2e6fc127f98c0d87fc3658670e2fd0a630.zip |
oops, fixed a missing )
svn path=/trunk/; revision=25663
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/component/addressbook-migrate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/component/addressbook-migrate.c b/addressbook/gui/component/addressbook-migrate.c index f757e9f3c5..5474ba9c00 100644 --- a/addressbook/gui/component/addressbook-migrate.c +++ b/addressbook/gui/component/addressbook-migrate.c @@ -1062,9 +1062,9 @@ 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 <= 10)) + && (minor < 5 || (minor == 5 && revision <= 10))) need_dialog = TRUE; - + if (need_dialog) setup_progress_dialog (context); |