Fixed small naming error - fixes #1883

This commit is contained in:
Yorik van Havre 2015-01-20 21:23:34 -02:00
parent d059520046
commit 378deaf7a3
2 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ DlgSettingsDocumentImp::DlgSettingsDocumentImp( QWidget* parent )
prefCountBackupFiles->setMaximum(INT_MAX);
prefCompression->setMinimum(Z_NO_COMPRESSION);
prefCompression->setMaximum(Z_BEST_COMPRESSION);
connect( prefLicenseType, SIGNAL(currentIndexChanged(int)), this, SLOT(on_prefLicenseType_changed(int)) );
connect( prefLicenseType, SIGNAL(currentIndexChanged(int)), this, SLOT(onLicenseTypeChanged(int)) );
}
/**
@ -111,7 +111,7 @@ void DlgSettingsDocumentImp::changeEvent(QEvent *e)
/**
* Set the correct URL depending on the license type
*/
void DlgSettingsDocumentImp::on_prefLicenseType_changed(int index)
void DlgSettingsDocumentImp::onLicenseTypeChanged(int index)
{
switch (index) {
case 0:

View File

@ -47,7 +47,7 @@ public:
void loadSettings();
protected Q_SLOTS:
void on_prefLicenseType_changed(int index);
void onLicenseTypeChanged(int index);
protected:
void changeEvent(QEvent *e);