I want to disable "Back" button on the wizard page:
void myPage::initializePage( void )
{
// ...
wizard()->button( QWizard::BackButton )->setDisabled( true );
}
But the button stays active. Why?
I want to disable "Back" button on the wizard page:
void myPage::initializePage( void )
{
// ...
wizard()->button( QWizard::BackButton )->setDisabled( true );
}
But the button stays active. Why?