Wizard: Use Qt5 style connects

Change-Id: I2507c9edebf3bc46f703cd026cfb5eb824c36ebd
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Tobias Hunger
2015-01-20 15:30:07 +01:00
parent 046f510e19
commit fd3076a4eb

View File

@@ -322,9 +322,9 @@ Wizard::Wizard(QWidget *parent, Qt::WindowFlags flags) :
{
d_ptr->q_ptr = this;
d_ptr->m_wizardProgress = new WizardProgress(this);
connect(this, SIGNAL(currentIdChanged(int)), this, SLOT(_q_currentPageChanged(int)));
connect(this, SIGNAL(pageAdded(int)), this, SLOT(_q_pageAdded(int)));
connect(this, SIGNAL(pageRemoved(int)), this, SLOT(_q_pageRemoved(int)));
connect(this, &QWizard::currentIdChanged, this, &Wizard::_q_currentPageChanged);
connect(this, &QWizard::pageAdded, this, &Wizard::_q_pageAdded);
connect(this, &QWizard::pageRemoved, this, &Wizard::_q_pageRemoved);
setSideWidget(new LinearProgressWidget(d_ptr->m_wizardProgress, this));
setOption(QWizard::NoCancelButton, false);
setOption(QWizard::NoDefaultButton, false);