Fixed a logic error that was the cause of bug #41389.
2003-04-15 Jeffrey Stedfast <fejj@ximian.com> * mail-config-druid.c (config_wizard_set_page): Fixed a logic error that was the cause of bug #41389. svn path=/trunk/; revision=20866
This commit is contained in:
committed by
Jeffrey Stedfast
parent
76e859fb6b
commit
2a2828a2e6
@ -1,3 +1,8 @@
|
||||
2003-04-15 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
* mail-config-druid.c (config_wizard_set_page): Fixed a logic
|
||||
error that was the cause of bug #41389.
|
||||
|
||||
2003-04-15 Not Zed <NotZed@Ximian.com>
|
||||
|
||||
* For bug #41199.
|
||||
|
||||
@ -104,7 +104,7 @@ config_wizard_set_page (MailConfigWizard *mcw, MailConfigWizardPage page)
|
||||
if (mcw->corba_wizard)
|
||||
evolution_wizard_set_page (mcw->corba_wizard, page, NULL);
|
||||
else {
|
||||
if (page <= mcw->interior_pages->len)
|
||||
if (page < mcw->interior_pages->len)
|
||||
gnome_druid_set_page (mcw->druid, mcw->interior_pages->pdata[page]);
|
||||
else
|
||||
gnome_druid_set_page (mcw->druid, mcw->last_page);
|
||||
|
||||
Reference in New Issue
Block a user