diff options
Diffstat (limited to 'src/logger.h')
-rw-r--r-- | src/logger.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/logger.h b/src/logger.h index 90c3a689f..71a194467 100644 --- a/src/logger.h +++ b/src/logger.h @@ -66,12 +66,6 @@ class Logger final { mLogToStandardOut = value; } /** - * Enables logging to chat window - */ - void setChatWindow(ChatWindow *const window) - { mChatWindow = window; } - - /** * Enters a message in the log. The message will be timestamped. */ void log(const char *const log_text, ...) @@ -120,7 +114,6 @@ class Logger final private: std::ofstream mLogFile; bool mLogToStandardOut; - ChatWindow *mChatWindow; bool mDebugLog; }; |