From ba64395e9a8c5fcac12ef97bc06ea3e93e69ef0b Mon Sep 17 00:00:00 2001 From: Matthias Ettrich Date: Sun, 13 Aug 2000 17:26:18 +0000 Subject: [PATCH] removed debug output svn path=/trunk/kdebase/kwin/; revision=60887 --- main.cpp | 2 +- workspace.cpp | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/main.cpp b/main.cpp index 247643c628..7161b9a9dd 100644 --- a/main.cpp +++ b/main.cpp @@ -46,7 +46,7 @@ static void crashHandler(int) { KCrash::setCrashHandler(0); // Exit on next crash. client->detach(); // Unregister with dcop. -// system("kwin&"); // Try to restart + system("kwin&"); // Try to restart } int x11ErrorHandler(Display *d, XErrorEvent *e){ diff --git a/workspace.cpp b/workspace.cpp index 904f7e348d..8c3b9a2f61 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -470,12 +470,6 @@ bool Workspace::workspaceEvent( XEvent * e ) } break; case EnterNotify: - qDebug("EnterNotify"); - { - QWidget* w = QWidget::find( e->xcrossing.window ); - if (w ) - qDebug("w = %s", w->className() ); - } if ( !QWhatsThis::inWhatsThisMode() ) break; { @@ -485,7 +479,6 @@ bool Workspace::workspaceEvent( XEvent * e ) } break; case LeaveNotify: - qDebug("LeaveNotify"); if ( !QWhatsThis::inWhatsThisMode() ) break; c = findClientWidthId( e->xcrossing.window );