clang tidy fixes

This commit is contained in:
Peter Hartmann 2021-03-26 09:30:58 +01:00
parent 3ae1dcba5f
commit 0c6ce610e0
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ MenuBar::MenuBar( QQuickItem *parent ) : QskLinearBox( Qt::Vertical, parent )
m_entryStrings = { "Dashboard", "Rooms", "Devices", "Statistics", "Storage", "Members" };
for( const auto entryString : m_entryStrings )
for( const auto &entryString : m_entryStrings )
{
auto* entry = new MenuItem( entryString, this );
m_entries.append(entry);