Make class variable const

This commit is contained in:
Chocobo1
2020-05-23 21:11:19 +08:00
parent 00eb61543d
commit 99a1802dbb
2 changed files with 4 additions and 5 deletions

View File

@@ -64,6 +64,6 @@ private:
mutable QHash<QString, QIcon> m_iconCache;
const bool m_useCustomTheme;
#if (defined(Q_OS_UNIX) && !defined(Q_OS_MACOS))
bool m_useSystemTheme;
const bool m_useSystemTheme;
#endif
};