diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-05-12 21:15:40 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-05-12 21:15:40 +0000 |
| commit | ebdf25bf6710c9cf585489302dcd8ca23b9b226a (patch) | |
| tree | 1ff6b682d8035209a6a122635ce4c90e5b8e61c5 /src/Window.cc | |
| parent | 4969c1b08453a4048c94f207f0c02287bdbc1d0c (diff) | |
removed all 'using namespace std;' calls.
Diffstat (limited to 'src/Window.cc')
| -rw-r--r-- | src/Window.cc | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/Window.cc b/src/Window.cc index 0a02daa1..ec042c30 100644 --- a/src/Window.cc +++ b/src/Window.cc @@ -56,9 +56,6 @@ #endif // SLIT #include "Util.h" -#include <iostream> -using namespace std; - /* * Initializes the class with default values/the window's set initial values. */ @@ -2208,7 +2205,6 @@ void OpenboxWindow::redrawCloseButton(Bool pressed) { void OpenboxWindow::mapRequestEvent(XMapRequestEvent *re) { - cout << "MAP REQUEST " << client.window << " " << client.title << endl; if (re->window == client.window) { #ifdef DEBUG fprintf(stderr, i18n->getMessage(WindowSet, WindowMapRequest, @@ -2797,7 +2793,6 @@ void OpenboxWindow::startMove(int x, int y) { } frame.grab_x = x - frame.x - frame.border_w; frame.grab_y = y - frame.y - frame.border_w; - cout << "START MOVE " << client.window << " " << client.title << endl; } @@ -2891,7 +2886,6 @@ void OpenboxWindow::endMove() { // cause problems XEvent e; while (XCheckTypedWindowEvent(display, frame.window, MotionNotify, &e)); - cout << "END MOVE " << client.window << " " << client.title << endl; } @@ -2910,7 +2904,6 @@ void OpenboxWindow::motionNotifyEvent(XMotionEvent *me) { Bool left = resize_zone & ZoneLeft; if (! flags.resizing) { - cout << "START RESIZE " << client.window << " " << client.title << endl; Cursor cursor; if (resize_zone & ZoneTop) cursor = (resize_zone & ZoneLeft) ? @@ -2984,8 +2977,7 @@ void OpenboxWindow::motionNotifyEvent(XMotionEvent *me) { screen->showGeometry(gx, gy); } - } else - cout << "MOTION " << client.window << " " << client.title << endl; + } } |
