summaryrefslogtreecommitdiff
path: root/src/client.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-11-10 04:08:26 +0000
committerDana Jansens <danakj@orodu.net>2002-11-10 04:08:26 +0000
commitb9cac2146e1dfe54cb6c0ce647d6c7d58d17de54 (patch)
treea304e1d573673762877cdf66be912c1f5afd5246 /src/client.cc
parentf2ae1c3b176e02eeb109478d3cfbf89647d66100 (diff)
WINDOWS GET FRAMES FRAME SHOW UP THEY WORK HUZZAH SOON THEYLL BE LIKE OLD TIMES!
Diffstat (limited to 'src/client.cc')
-rw-r--r--src/client.cc10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/client.cc b/src/client.cc
index 4a99b0bc..55f2fb4c 100644
--- a/src/client.cc
+++ b/src/client.cc
@@ -1,5 +1,9 @@
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
+#ifdef HAVE_CONFIG_H
+# include "../config.h"
+#endif
+
#include "client.hh"
#include "screen.hh"
#include "openbox.hh"
@@ -18,8 +22,8 @@ extern "C" {
namespace ob {
-OBClient::OBClient(Window window)
- : _window(window)
+OBClient::OBClient(int screen, Window window)
+ : _screen(screen), _window(window)
{
assert(window);
@@ -78,6 +82,7 @@ OBClient::OBClient(Window window)
updateIconTitle();
updateClass();
+/*
#ifdef DEBUG
printf("Mapped window: 0x%lx\n"
" title: \t%s\t icon title: \t%s\n"
@@ -123,6 +128,7 @@ OBClient::OBClient(Window window)
_floating ? "yes" : "no",
_positioned ? "yes" : "no");
#endif
+*/
}