put a header where it belongs
This commit is contained in:
parent
fa05dc56ea
commit
24924367f9
3 changed files with 2 additions and 5 deletions
|
@ -6,6 +6,7 @@
|
|||
|
||||
#include "../version.h"
|
||||
#include "openbox.hh"
|
||||
#include "client.hh"
|
||||
#include "screen.hh"
|
||||
#include "otk/property.hh"
|
||||
#include "otk/display.hh"
|
||||
|
|
|
@ -24,11 +24,11 @@ extern "C" {
|
|||
#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.
|
||||
/*!
|
||||
|
|
|
@ -100,10 +100,7 @@ void OBRootWindow::mapRequestHandler(const XMapRequestEvent &e)
|
|||
|
||||
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 @@ void OBRootWindow::mapRequestHandler(const XMapRequestEvent &e)
|
|||
}
|
||||
|
||||
|
||||
#include <stdio.h>
|
||||
void OBRootWindow::configureRequestHandler(const XConfigureRequestEvent &e)
|
||||
{
|
||||
OtkEventHandler::configureRequestHandler(e);
|
||||
|
|
Loading…
Reference in a new issue