all repos — openbox @ f1b9e2168d8c1b03b0fcf0b6dd70aa46c513059d

openbox fork - make it a bit more like ryudo

workaround for swig problem
Dana Jansens danakj@orodu.net
commit

f1b9e2168d8c1b03b0fcf0b6dd70aa46c513059d

parent

23c11a151a968457ce6f5a58549d842ea74b6f46

2 files changed, 4 insertions(+), 4 deletions(-)

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

@@ -63,7 +63,7 @@ GCCache *Display::_gccache = (GCCache*) 0;

int Display::_grab_count = 0; -int Display::xerrorHandler(::Display *d, XErrorEvent *e) +static int xerrorHandler(::Display *d, XErrorEvent *e) { #ifdef DEBUG char errtxt[128];
M otk/display.hhotk/display.hh

@@ -69,11 +69,11 @@ @see Texture

*/ static GCCache *_gccache; - //! Handles X errors on the display - /*! + // Handles X errors on the display + /* Displays the error if compiled for debugging. */ - static int xerrorHandler(::Display *d, XErrorEvent *e); + //static int xerrorHandler(::Display *d, XErrorEvent *e); //! Prevents instantiation of the class Display();