summaryrefslogtreecommitdiffstats
path: root/src/debugging/TSLogger.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-02-25 13:34:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-02-25 13:34:53 +0900
commit4e57686976724d784d154620b3e81a9d459f601b (patch)
treecb3750f745c6c044092af3e1f674901d119a9ff9 /src/debugging/TSLogger.h
parenta57b51348a0056a552568e0b70db51463f322f9c (diff)
downloaduniversal-indent-gui-tqt-4e57686976724d784d154620b3e81a9d459f601b.tar.gz
universal-indent-gui-tqt-4e57686976724d784d154620b3e81a9d459f601b.zip
Renamed TSLogger _* members to m_*.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/debugging/TSLogger.h')
-rw-r--r--src/debugging/TSLogger.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/debugging/TSLogger.h b/src/debugging/TSLogger.h
index 5cbe4c9..261398c 100644
--- a/src/debugging/TSLogger.h
+++ b/src/debugging/TSLogger.h
@@ -49,22 +49,22 @@ namespace tschweitzer
void openLogFileFolder();
private:
- Ui::TSLoggerDialog *_TSLoggerDialogForm;
+ Ui::TSLoggerDialog *m_TSLoggerDialogForm;
enum LogFileInitState
{
NOTINITIALZED,
INITIALIZING,
INITIALZED
- } _logFileInitState;
+ } m_logFileInitState;
TSLogger(int verboseLevel);
void writeToLogFile(const TQString &message);
- static TSLogger *_instance;
- TQtMsgType _verboseLevel;
- TQFile _logFile;
- TQStringList _messageQueue;
+ static TSLogger *m_instance;
+ TQtMsgType m_verboseLevel;
+ TQFile m_logFile;
+ TQStringList m_messageQueue;
};
}
} // namespace tschweitzer::debugging