Skip to content

Commit

Permalink
Simplify code
Browse files Browse the repository at this point in the history
This code does nothing and only adds overhead since 69b590b
  • Loading branch information
m-kuhn authored and nyalldawson committed Aug 17, 2018
1 parent ce87662 commit 78aa26a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -14110,7 +14110,7 @@ void QgisApp::populateProjectStorageMenu( QMenu *menu, bool saving )
QString name = storage->visibleName();
if ( name.isEmpty() )
continue;
QAction *action = menu->addAction( QStringLiteral( "%1" ).arg( name ) + QChar( 0x2026 ) ); // 0x2026 = ellipsis character
QAction *action = menu->addAction( name + QChar( 0x2026 ) ); // 0x2026 = ellipsis character
if ( saving )
{
connect( action, &QAction::triggered, [this, storage]
Expand Down

0 comments on commit 78aa26a

Please sign in to comment.