diff --git a/src/common/QskRgbValue.cpp b/src/common/QskRgbValue.cpp index 7b4c0b8c..bd6ac812 100644 --- a/src/common/QskRgbValue.cpp +++ b/src/common/QskRgbValue.cpp @@ -188,8 +188,8 @@ void QskRgb::debugColor( QDebug debug, QRgb rgb ) debug << '['; - debug << qRed( rgb ) << "r," << qGreen( rgb ) << "g," - << qBlue( rgb ) << 'b'; + debug << qRed( rgb ) << "r," + << qGreen( rgb ) << "g," << qBlue( rgb ) << 'b'; if ( qAlpha( rgb ) != 255 ) debug << ',' << qAlpha( rgb ) << 'a'; diff --git a/src/controls/QskSkin.cpp b/src/controls/QskSkin.cpp index 4a8e20e5..b7ad051a 100644 --- a/src/controls/QskSkin.cpp +++ b/src/controls/QskSkin.cpp @@ -229,7 +229,7 @@ void QskSkin::setupFonts( const QString& family, int weight, bool italic ) for ( int i = TinyFont; i <= HugeFont; i++ ) { - font.setPixelSize( qskDpiScaled( sizes[i-1] ) ); + font.setPixelSize( qskDpiScaled( sizes[i - 1] ) ); m_data->fonts[ i ] = font; }