workaround for swig problem

This commit is contained in:
Dana Jansens 2003-01-11 19:39:10 +00:00
parent 23c11a151a
commit f1b9e2168d
2 changed files with 4 additions and 4 deletions

View file

@ -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];

View file

@ -69,11 +69,11 @@ private:
*/
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();