all repos — openbox @ 24b33ef877808f0af5b967f21c011ab8b314e780

openbox fork - make it a bit more like ryudo

fuc put it back
Dana Jansens danakj@orodu.net
commit

24b33ef877808f0af5b967f21c011ab8b314e780

parent

67bb7f8ce08d3ef625843ab7ea2c4434b1620ecf

3 files changed, 11 insertions(+), 10 deletions(-)

jump to
M otk/rendercontrol.ccotk/rendercontrol.cc

@@ -57,14 +57,4 @@

} - -void RenderControl::render(::Drawable d) -{ - Pixmap p = XCreatePixmap(**display, d, 255, 30, _screen->depth()); - - - - XFreePixmap(**display, p); -} - }
M otk/truerendercontrol.ccotk/truerendercontrol.cc

@@ -57,4 +57,13 @@

} +void TrueRenderControl::render(::Drawable d) +{ + Pixmap p = XCreatePixmap(**display, d, 255, 30, _screen->depth()); + + + + XFreePixmap(**display, p); +} + }
M otk/truerendercontrol.hhotk/truerendercontrol.hh

@@ -16,6 +16,8 @@

public: TrueRenderControl(const ScreenInfo *screen); virtual ~TrueRenderControl(); + + virtual void render(::Drawable d) = 0; }; }