mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 17:37:36 +03:00
Be more specific when disconnecting the signal
Fixes a crash, amends be48cb646c
This commit is contained in:
parent
a9d94ef732
commit
2c8e95a0f4
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ void OwncloudWizard::slotCurrentPageChanged( int id )
|
||||||
}
|
}
|
||||||
|
|
||||||
if( id == WizardCommon::Page_Result ) {
|
if( id == WizardCommon::Page_Result ) {
|
||||||
disconnect(this, SIGNAL(basicSetupFinished(int)));
|
disconnect(this, SIGNAL(finished(int)), this, SIGNAL(basicSetupFinished(int)));
|
||||||
emit basicSetupFinished(QDialog::Accepted);
|
emit basicSetupFinished(QDialog::Accepted);
|
||||||
appendToConfigurationLog( QString::null );
|
appendToConfigurationLog( QString::null );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue