all repos — openbox @ 24924367f9486b29b8b9fd024781ccb5f9e0e276

openbox fork - make it a bit more like ryudo

put a header where it belongs
Dana Jansens danakj@orodu.net
commit

24924367f9486b29b8b9fd024781ccb5f9e0e276

parent

fa05dc56ea0bf29100efd2cb4399d8f4818f73e7

3 files changed, 2 insertions(+), 5 deletions(-)

jump to
M src/openbox.ccsrc/openbox.cc

@@ -6,6 +6,7 @@ #endif

#include "../version.h" #include "openbox.hh" +#include "client.hh" #include "screen.hh" #include "otk/property.hh" #include "otk/display.hh"
M src/openbox.hhsrc/openbox.hh

@@ -24,11 +24,11 @@ #include "otk/property.hh"

#include "otk/configuration.hh" #include "otk/eventdispatcher.hh" #include "otk/eventhandler.hh" -#include "client.hh" namespace ob { class OBScreen; +class OBClient; //! The main class for the Openbox window manager. /*!
M src/rootwindow.ccsrc/rootwindow.cc

@@ -100,10 +100,7 @@ #endif // DEBUG

OBClient *client = Openbox::instance->findClient(e.window); - printf("Client: %lx\n", client); - if (client) { - printf("found client\n"); // XXX: uniconify and/or unshade the window } else { Openbox::instance->screen(_info->getScreenNumber())->

@@ -112,7 +109,6 @@ }

} -#include <stdio.h> void OBRootWindow::configureRequestHandler(const XConfigureRequestEvent &e) { OtkEventHandler::configureRequestHandler(e);