diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-12-14 00:29:00 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-12-14 00:29:00 +0100 |
commit | f18afd3d1e73cc0020bfa1189e0b8fefc0f14e61 (patch) | |
tree | 391235d09867cf718d69a8e8d4beed6cefda5057 /application/themes | |
parent | ef2cbe16e611da68f3cb529f87f4ecb3038af161 (diff) | |
download | MultiMC-f18afd3d1e73cc0020bfa1189e0b8fefc0f14e61.tar MultiMC-f18afd3d1e73cc0020bfa1189e0b8fefc0f14e61.tar.gz MultiMC-f18afd3d1e73cc0020bfa1189e0b8fefc0f14e61.tar.lz MultiMC-f18afd3d1e73cc0020bfa1189e0b8fefc0f14e61.tar.xz MultiMC-f18afd3d1e73cc0020bfa1189e0b8fefc0f14e61.zip |
NOISSUE fix a bunch of warnings thrown by Qt internals
Badly connected signals/slots and similar things.
Diffstat (limited to 'application/themes')
-rw-r--r-- | application/themes/SystemTheme.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/themes/SystemTheme.cpp b/application/themes/SystemTheme.cpp index 069b0b1b..a9ee853a 100644 --- a/application/themes/SystemTheme.cpp +++ b/application/themes/SystemTheme.cpp @@ -9,7 +9,7 @@ SystemTheme::SystemTheme() const auto & style = QApplication::style(); systemPalette = style->standardPalette(); QString lowerThemeName = style->objectName(); - qWarning() << systemTheme; + qDebug() << systemTheme; QStringList styles = QStyleFactory::keys(); for(auto &st: styles) { @@ -21,7 +21,7 @@ SystemTheme::SystemTheme() } // fall back to fusion if we can't find the current theme. systemTheme = "Fusion"; - qWarning() << "System theme not found, defaulted to Fusion"; + qDebug() << "System theme not found, defaulted to Fusion"; } void SystemTheme::apply(bool initial) |