removed debug output

svn path=/trunk/kdebase/kwin/; revision=60887
remotes/origin/Plasma/5.0
Matthias Ettrich 26 years ago
parent 81bd6b26c3
commit ba64395e9a
  1. 2
      main.cpp
  2. 7
      workspace.cpp

@ -46,7 +46,7 @@ static void crashHandler(int)
{ {
KCrash::setCrashHandler(0); // Exit on next crash. KCrash::setCrashHandler(0); // Exit on next crash.
client->detach(); // Unregister with dcop. client->detach(); // Unregister with dcop.
// system("kwin&"); // Try to restart system("kwin&"); // Try to restart
} }
int x11ErrorHandler(Display *d, XErrorEvent *e){ int x11ErrorHandler(Display *d, XErrorEvent *e){

@ -470,12 +470,6 @@ bool Workspace::workspaceEvent( XEvent * e )
} }
break; break;
case EnterNotify: case EnterNotify:
qDebug("EnterNotify");
{
QWidget* w = QWidget::find( e->xcrossing.window );
if (w )
qDebug("w = %s", w->className() );
}
if ( !QWhatsThis::inWhatsThisMode() ) if ( !QWhatsThis::inWhatsThisMode() )
break; break;
{ {
@ -485,7 +479,6 @@ bool Workspace::workspaceEvent( XEvent * e )
} }
break; break;
case LeaveNotify: case LeaveNotify:
qDebug("LeaveNotify");
if ( !QWhatsThis::inWhatsThisMode() ) if ( !QWhatsThis::inWhatsThisMode() )
break; break;
c = findClientWidthId( e->xcrossing.window ); c = findClientWidthId( e->xcrossing.window );

Loading…
Cancel
Save