cleanup: replace function static variable by member variable

Global variables are evil. In this case not a problem, since
this is a singleton anyway. However, it is bad style and does
unnecessary thread synchronization.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2022-01-05 18:26:19 +01:00 committed by Dirk Hohndel
parent 510f623c77
commit 1cff14fa7f
2 changed files with 10 additions and 8 deletions

View file

@ -87,5 +87,7 @@ private:
double m_titlePointSize;
QString m_currentTheme;
bool m_needSignals;
};
#endif