Skip to content

Commit 78aa26a

Browse files
m-kuhnnyalldawson
authored andcommitted
Simplify code
This code does nothing and only adds overhead since 69b590b
1 parent ce87662 commit 78aa26a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgisapp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14110,7 +14110,7 @@ void QgisApp::populateProjectStorageMenu( QMenu *menu, bool saving )
1411014110
QString name = storage->visibleName();
1411114111
if ( name.isEmpty() )
1411214112
continue;
14113-
QAction *action = menu->addAction( QStringLiteral( "%1" ).arg( name ) + QChar( 0x2026 ) ); // 0x2026 = ellipsis character
14113+
QAction *action = menu->addAction( name + QChar( 0x2026 ) ); // 0x2026 = ellipsis character
1411414114
if ( saving )
1411514115
{
1411614116
connect( action, &QAction::triggered, [this, storage]

0 commit comments

Comments
 (0)