From 3c7d97403e91008dded5d6a6b0d37839b89b3996 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sat, 27 Mar 2021 15:44:26 +0100 Subject: [PATCH] [plasmalnf] Apply coding style --- src/modules/plasmalnf/ThemeInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/plasmalnf/ThemeInfo.cpp b/src/modules/plasmalnf/ThemeInfo.cpp index 73f7174b3..8e7aa13b9 100644 --- a/src/modules/plasmalnf/ThemeInfo.cpp +++ b/src/modules/plasmalnf/ThemeInfo.cpp @@ -185,7 +185,7 @@ ThemesModel::setThemeImage( const QMap< QString, QString >& images ) QSignalBlocker b( this ); for ( auto k = images.constKeyValueBegin(); k != images.constKeyValueEnd(); ++k ) { - setThemeImage( (*k).first, (*k).second ); + setThemeImage( ( *k ).first, ( *k ).second ); } } emit dataChanged( index( 0, 0 ), index( m_themes->count() - 1 ), { ImageRole } );