]> Dogcows Code - chaz/openbox/commitdiff
remove debugging couts
authorDana Jansens <danakj@orodu.net>
Thu, 18 Apr 2002 07:28:12 +0000 (07:28 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 18 Apr 2002 07:28:12 +0000 (07:28 +0000)
src/Workspace.cc

index bca324425924f1355654cab9facec556f47a6dae..6884b10f6449f979c08d96e0e7039f0844da16ba 100644 (file)
@@ -542,7 +542,6 @@ void Workspace::placeWindow(OpenboxWindow *win) {
   // future (with the NETWM 'strut')
   Rect space(0, 0, screen.size().w(), screen.size().h());
 
   // future (with the NETWM 'strut')
   Rect space(0, 0, screen.size().w(), screen.size().h());
 
-  cout << "space: x: " << space.x() << " y: " << space.y() << " w: " << space.w() << " h: " << space.h() << endl;
 #ifdef    SLIT
   Slit *slit = screen.getSlit();
   int remove;   // 0 - top/2 - right/2 - bottom/3 - left
 #ifdef    SLIT
   Slit *slit = screen.getSlit();
   int remove;   // 0 - top/2 - right/2 - bottom/3 - left
@@ -584,7 +583,6 @@ void Workspace::placeWindow(OpenboxWindow *win) {
   }
 #endif
 
   }
 #endif
 
-  cout << "space: x: " << space.x() << " y: " << space.y() << " w: " << space.w() << " h: " << space.h() << endl;
   Toolbar *toolbar = screen.getToolbar();
   int tbarh = screen.hideToolbar() ? 0 :
     toolbar->getExposedHeight() + screen.getBorderWidth() * 2;
   Toolbar *toolbar = screen.getToolbar();
   int tbarh = screen.hideToolbar() ? 0 :
     toolbar->getExposedHeight() + screen.getBorderWidth() * 2;
@@ -604,7 +602,6 @@ void Workspace::placeWindow(OpenboxWindow *win) {
   default:
     ASSERT(false);      // unhandled placement
   }
   default:
     ASSERT(false);      // unhandled placement
   }
-  cout << "space: x: " << space.x() << " y: " << space.y() << " w: " << space.w() << " h: " << space.h() << endl;
 
   const int win_w = win->size().w() + (screen.getBorderWidth() * 4),
     win_h = win->size().h() + (screen.getBorderWidth() * 4),
 
   const int win_w = win->size().w() + (screen.getBorderWidth() * 4),
     win_h = win->size().h() + (screen.getBorderWidth() * 4),
This page took 0.024132 seconds and 4 git commands to generate.