summaryrefslogtreecommitdiff
path: root/src/logger.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-11-01 12:50:15 +0300
committerAndrei Karas <akaras@inbox.ru>2013-11-01 21:33:36 +0300
commit1c04a68a1604bf59dd2c33195f9f3fb2207a91e2 (patch)
tree7f3dd777179a1e1585600ea40d7667a8d3d827a6 /src/logger.h
parenta1ca5e04b60902f84eb5da7d5e212ecf66d7f3e6 (diff)
downloadplus-1c04a68a1604bf59dd2c33195f9f3fb2207a91e2.tar.gz
plus-1c04a68a1604bf59dd2c33195f9f3fb2207a91e2.tar.bz2
plus-1c04a68a1604bf59dd2c33195f9f3fb2207a91e2.tar.xz
plus-1c04a68a1604bf59dd2c33195f9f3fb2207a91e2.zip
remove log to chat from logger.
Diffstat (limited to 'src/logger.h')
-rw-r--r--src/logger.h7
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;
};