diff options
Diffstat (limited to 'src/gui/chatwindow.cpp')
-rw-r--r-- | src/gui/chatwindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/chatwindow.cpp b/src/gui/chatwindow.cpp index 4897a06bd..43d0f9634 100644 --- a/src/gui/chatwindow.cpp +++ b/src/gui/chatwindow.cpp @@ -1674,19 +1674,19 @@ void ChatWindow::optionChanged(const std::string &name) void ChatWindow::mouseMoved(gcn::MouseEvent &event) { mHaveMouse = true; - gcn::Window::mouseMoved(event); + Window::mouseMoved(event); } void ChatWindow::mouseEntered(gcn::MouseEvent& mouseEvent) { mHaveMouse = true; - gcn::Window::mouseEntered(mouseEvent); + Window::mouseEntered(mouseEvent); } void ChatWindow::mouseExited(gcn::MouseEvent& mouseEvent) { updateVisibility(); - gcn::Window::mouseExited(mouseEvent); + Window::mouseExited(mouseEvent); } void ChatWindow::draw(gcn::Graphics* graphics) |