In the License Wizard Example of the help ,the nextId() method of the ConclusionPage class should have been written as follows:
int ConclusionPage::nextId() const
{
return -1;
}
and what is written is as follows:
int IntroPage::nextId() const
{
if (evaluateRadioButton->isChecked()) {
return LicenseWizard::Page_Evaluate;
} else {
return LicenseWizard::Page_Register;
}
}
In the files included in the installation directory:dialogs/licensewizard/licensewizard.cpp everything is right.I just think they copied the wrong function in the help.
Any help in reporting this would be appreciated.
Anyways,thank you Qt guys to provide such a good developing platform.
↧