Skip to content

Commit

Permalink
Fix string capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 26, 2018
1 parent 44896c3 commit e1a344f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgisapp.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2372,13 +2372,13 @@ void QgisApp::refreshProfileMenu()


mConfigMenu->addSeparator( ); mConfigMenu->addSeparator( );


QAction *openProfileFolderAction = mConfigMenu->addAction( tr( "Open active profile folder" ) ); QAction *openProfileFolderAction = mConfigMenu->addAction( tr( "Open Active Profile Folder" ) );
connect( openProfileFolderAction, &QAction::triggered, this, [this]() connect( openProfileFolderAction, &QAction::triggered, this, [this]()
{ {
QDesktopServices::openUrl( QUrl::fromLocalFile( userProfileManager()->userProfile()->folder() ) ); QDesktopServices::openUrl( QUrl::fromLocalFile( userProfileManager()->userProfile()->folder() ) );
} ); } );


QAction *newProfileAction = mConfigMenu->addAction( tr( "New profile" ) ); QAction *newProfileAction = mConfigMenu->addAction( tr( "New Profile…" ) );
connect( newProfileAction, &QAction::triggered, this, &QgisApp::newProfile ); connect( newProfileAction, &QAction::triggered, this, &QgisApp::newProfile );
} }


Expand Down

0 comments on commit e1a344f

Please sign in to comment.