diff options
author | JP Rosevear <jpr@ximian.com> | 2004-04-01 11:32:36 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-04-01 11:32:36 +0800 |
commit | b208198bfc746e5964a05e6b3d9fce6a09f68217 (patch) | |
tree | e26ca5dd7af91b1861c63a0d713759ebc332464e /calendar/gui | |
parent | ac4ca10036ec7d3afb60a621c4d43dded203cea7 (diff) | |
download | gsoc2013-evolution-b208198bfc746e5964a05e6b3d9fce6a09f68217.tar gsoc2013-evolution-b208198bfc746e5964a05e6b3d9fce6a09f68217.tar.gz gsoc2013-evolution-b208198bfc746e5964a05e6b3d9fce6a09f68217.tar.bz2 gsoc2013-evolution-b208198bfc746e5964a05e6b3d9fce6a09f68217.tar.lz gsoc2013-evolution-b208198bfc746e5964a05e6b3d9fce6a09f68217.tar.xz gsoc2013-evolution-b208198bfc746e5964a05e6b3d9fce6a09f68217.tar.zst gsoc2013-evolution-b208198bfc746e5964a05e6b3d9fce6a09f68217.zip |
make sure we unset the float value for the panes if converting from 1.4
2004-03-31 JP Rosevear <jpr@ximian.com>
* gui/migration.c (migrate_calendars): make sure we unset the
float value for the panes if converting from 1.4 and earlier
svn path=/trunk/; revision=25274
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/migration.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/migration.c b/calendar/gui/migration.c index 674773e0f3..e4534b1243 100644 --- a/calendar/gui/migration.c +++ b/calendar/gui/migration.c @@ -610,7 +610,7 @@ migrate_calendars (CalendarComponent *component, int major, int minor, int revis dialog_close (); } - if (minor == 5 && revision < 5) { + if (minor <= 4 || (minor == 5 && revision < 5)) { GConfClient *gconf; GConfValue *gconf_val; int i; |