From 18062f4ad6733bb81326ec55044a7d7593c00398 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 17 Feb 2019 01:05:24 +0100 Subject: [PATCH] LibGUI: Remove some debugging noise. --- LibGUI/GWidget.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/LibGUI/GWidget.cpp b/LibGUI/GWidget.cpp index 01605b611d..3bf6cc8934 100644 --- a/LibGUI/GWidget.cpp +++ b/LibGUI/GWidget.cpp @@ -74,9 +74,7 @@ void GWidget::handle_paint_event(GPaintEvent& event) Painter painter(*this); painter.fill_rect(event.rect(), background_color()); } - dbgprintf("GWidget{%p} handle_paint_event %s before calling paint_event()\n", this, event.rect().to_string().characters()); paint_event(event); - dbgprintf("GWidget{%p} handle_paint_event %s after calling paint_event()\n", this, event.rect().to_string().characters()); for (auto* ch : children()) { auto* child = (GWidget*)ch; if (child->relative_rect().intersects(event.rect())) {