Skip to content

Commit aabfdf9

Browse files
committedNov 17, 2011
Use null string vs empty
1 parent 87418c2 commit aabfdf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ int main( int argc, char *argv[] )
478478

479479
// Set the application style. If it's not set QT will use the platform style except on Windows
480480
// as it looks really ugly so we use QPlastiqueStyle.
481-
QString style = mySettings.value("/qgis/style","").toString();
481+
QString style = mySettings.value("/qgis/style").toString();
482482
if ( !style.isNull() )
483483
QApplication::setStyle( style );
484484
#ifdef Q_WS_WIN

0 commit comments

Comments
 (0)