Skip to content

Commit

Permalink
Fixed small naming error - fixes #1883
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Jan 20, 2015
1 parent d059520 commit 378deaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Gui/DlgSettingsDocumentImp.cpp
Expand Up @@ -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)) );
}

/**
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/Gui/DlgSettingsDocumentImp.h
Expand Up @@ -47,7 +47,7 @@ namespace Dialog {
void loadSettings();

protected Q_SLOTS:
void on_prefLicenseType_changed(int index);
void onLicenseTypeChanged(int index);

protected:
void changeEvent(QEvent *e);
Expand Down

0 comments on commit 378deaf

Please sign in to comment.