diff options
author | JP Rosevear <jpr@ximian.com> | 2004-01-09 11:13:18 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-01-09 11:13:18 +0800 |
commit | f13d5385ffa7ed71f9c641cc2d160a9653dd62f4 (patch) | |
tree | 90faa7a0b32966baae03b0a65b6c42b3bf2d371c | |
parent | 4d84b990b064bc058f40d80ea2970c3d57ed51f9 (diff) | |
download | gsoc2013-evolution-f13d5385ffa7ed71f9c641cc2d160a9653dd62f4.tar gsoc2013-evolution-f13d5385ffa7ed71f9c641cc2d160a9653dd62f4.tar.gz gsoc2013-evolution-f13d5385ffa7ed71f9c641cc2d160a9653dd62f4.tar.bz2 gsoc2013-evolution-f13d5385ffa7ed71f9c641cc2d160a9653dd62f4.tar.lz gsoc2013-evolution-f13d5385ffa7ed71f9c641cc2d160a9653dd62f4.tar.xz gsoc2013-evolution-f13d5385ffa7ed71f9c641cc2d160a9653dd62f4.tar.zst gsoc2013-evolution-f13d5385ffa7ed71f9c641cc2d160a9653dd62f4.zip |
make sure we actually upgrade between revisions
2004-01-08 JP Rosevear <jpr@ximian.com>
* e-shell.c (e_shell_attempt_upgrade): make sure we actually
upgrade between revisions
svn path=/trunk/; revision=24124
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 70c068c8fe..2e07f1b492 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,10 @@ 2004-01-08 JP Rosevear <jpr@ximian.com> + * e-shell.c (e_shell_attempt_upgrade): make sure we actually + upgrade between revisions + +2004-01-08 JP Rosevear <jpr@ximian.com> + * e-shell-startup-wizard.c (get_intelligent_importers): add a ')' to create a valid query diff --git a/shell/e-shell.c b/shell/e-shell.c index 938967105d..22bfb1a9b3 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -596,7 +596,7 @@ e_shell_attempt_upgrade (EShell *shell, if (! (current_major > major || (current_major == major && current_minor > minor) - || (current_minor == current_minor && current_revision > current_revision))) { + || (current_minor == current_minor && current_revision > revision))) { return TRUE; } |