summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-04-18 07:28:12 +0000
committerDana Jansens <danakj@orodu.net>2002-04-18 07:28:12 +0000
commit13ac6f2abd09ea0f8bbdd8f3131115200cadc225 (patch)
treee28dc81ff91d3a8380f91a9d1f6bfc01bd8e5e8c /src
parentf27fe4edbbd0f3abde228737bd37d1be128e01f3 (diff)
remove debugging couts
Diffstat (limited to 'src')
-rw-r--r--src/Workspace.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Workspace.cc b/src/Workspace.cc
index bca32442..6884b10f 100644
--- a/src/Workspace.cc
+++ b/src/Workspace.cc
@@ -542,7 +542,6 @@ void Workspace::placeWindow(OpenboxWindow *win) {
// 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
@@ -584,7 +583,6 @@ void Workspace::placeWindow(OpenboxWindow *win) {
}
#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;
@@ -604,7 +602,6 @@ void Workspace::placeWindow(OpenboxWindow *win) {
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),