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 | |
parent | ac4ca10036ec7d3afb60a621c4d43dded203cea7 (diff) | |
download | gsoc2013-evolution-b208198bfc746e5964a05e6b3d9fce6a09f68217.tar.gz 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
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/migration.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 2b31debdbe..8d7ffff3bb 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +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 + 2004-03-31 JP Rosevear <jpr@ximian.com> Fixes #56120 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; |