diff options
Diffstat (limited to 'shell')
-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; } |