diff options
Diffstat (limited to 'src/gui/chatwindow.h')
-rw-r--r-- | src/gui/chatwindow.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/gui/chatwindow.h b/src/gui/chatwindow.h index 9b46d7ad..59ab6d99 100644 --- a/src/gui/chatwindow.h +++ b/src/gui/chatwindow.h @@ -152,10 +152,10 @@ class ChatWindow : public Window, /** Override to reset mTmpVisible */ void setVisible(bool visible) override; - void mousePressed(gcn::MouseEvent &event) override; - void mouseDragged(gcn::MouseEvent &event) override; + void mousePressed(gcn::MouseEvent &event) override; + void mouseDragged(gcn::MouseEvent &event) override; - void event(Event::Channel channel, const Event &event) override; + void event(Event::Channel channel, const Event &event) override; /** * Scrolls the chat window @@ -173,9 +173,6 @@ class ChatWindow : public Window, */ void setRecordingFile(const std::string &msg); - bool getReturnTogglesChat() const { return mReturnToggles; } - void setReturnTogglesChat(bool toggles) { mReturnToggles = toggles; } - void doPresent(); void whisper(const std::string &nick, const std::string &mes, @@ -216,9 +213,6 @@ class ChatWindow : public Window, /** Manage whisper tabs */ std::map<const std::string, ChatTab *> mWhispers; - - bool mReturnToggles; /**< Marks whether <Return> toggles the chat log - or not */ }; extern ChatWindow *chatWindow; |