diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-20 08:16:02 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-20 08:16:02 +0100 |
commit | d4cce87dbc7213aa980ca410a2a39b05f5a43b6d (patch) | |
tree | e9d21eff4b5262fe30a802b0198e879ef9ed89f9 /LibGUI/GLabel.cpp | |
parent | a9e60fc80068af8ee3ef293d1287ab71f98197f2 (diff) | |
download | serenity-d4cce87dbc7213aa980ca410a2a39b05f5a43b6d.zip |
LibGUI: Minor fixes.
Diffstat (limited to 'LibGUI/GLabel.cpp')
-rw-r--r-- | LibGUI/GLabel.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/LibGUI/GLabel.cpp b/LibGUI/GLabel.cpp index a953ffda58..472bc47ad2 100644 --- a/LibGUI/GLabel.cpp +++ b/LibGUI/GLabel.cpp @@ -26,10 +26,3 @@ void GLabel::paintEvent(GPaintEvent&) if (!text().is_empty()) painter.draw_text({ 4, 4, width(), height() }, text(), Painter::TextAlignment::TopLeft, foregroundColor()); } - -void GLabel::mouseMoveEvent(GMouseEvent& event) -{ - dbgprintf("GLabel::mouseMoveEvent: x=%d, y=%d\n", event.x(), event.y()); - GWidget::mouseMoveEvent(event); -} - |