Skip to content

Commit

Permalink
Update connection to new style for macOS Preferences fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dakcarto committed Dec 28, 2016
1 parent d205794 commit 95ff9a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -2031,7 +2031,7 @@ void QgisApp::createMenus()
QAction* actionPrefs = new QAction( tr( "Preferences..." ), this );
actionPrefs->setMenuRole( QAction::PreferencesRole );
actionPrefs->setIcon( mActionOptions->icon() );
connect( actionPrefs, SIGNAL( triggered() ), this, SLOT( options() ) );
connect( actionPrefs, &QAction::triggered, this, &QgisApp::options );
mProjectMenu->addAction( actionPrefs );

// Window Menu
Expand Down

0 comments on commit 95ff9a1

Please sign in to comment.