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:
Jeffrey Stedfast
2003-04-16 17:03:11 +00:00
committed by Jeffrey Stedfast
parent 76e859fb6b
commit 2a2828a2e6
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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);