diff options
author | Sven Gothel <[email protected]> | 2011-12-23 01:45:24 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-12-23 01:45:24 +0100 |
commit | c6fca0edc9f092a8f08f14f6ad128b62c6227c6e (patch) | |
tree | 6a89151236a0d724fcb136713158c39f333257a5 /src/newt/native/X11Display.c | |
parent | f3f794fe37a7e33a771a4a702f3f46ead4dc6d03 (diff) |
NEWT/X11: Fix regressions of commit f3f794fe37a7e33a771a4a702f3f46ead4dc6d03: Unresolved symbols. Disable VERBOSE.
Diffstat (limited to 'src/newt/native/X11Display.c')
-rw-r--r-- | src/newt/native/X11Display.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/newt/native/X11Display.c b/src/newt/native/X11Display.c index d6a099f1d..283636040 100644 --- a/src/newt/native/X11Display.c +++ b/src/newt/native/X11Display.c @@ -94,7 +94,7 @@ static int displayDispatchErrorHandler(Display *dpy, XErrorEvent *e) return 0; } -static void displayDispatchErrorHandlerEnable(int onoff, JNIEnv * env) { +void NewtDisplay_displayDispatchErrorHandlerEnable(int onoff, JNIEnv * env) { if(onoff) { if(NULL==origErrorHandler) { setupJVMVars(env); @@ -403,7 +403,7 @@ JNIEXPORT void JNICALL Java_jogamp_newt_driver_x11_X11Display_DispatchMessages0 // DBG_PRINT( "X11: DispatchMessages dpy %p, win %p, Event %d\n", (void*)dpy, (void*)evt.xany.window, (int)evt.type); - displayDispatchErrorHandlerEnable(1, env); + NewtDisplay_displayDispatchErrorHandlerEnable(1, env); jwindow = getJavaWindowProperty(env, dpy, evt.xany.window, javaObjectAtom, #ifdef VERBOSE_ON @@ -413,7 +413,7 @@ JNIEXPORT void JNICALL Java_jogamp_newt_driver_x11_X11Display_DispatchMessages0 #endif ); - displayDispatchErrorHandlerEnable(0, env); + NewtDisplay_displayDispatchErrorHandlerEnable(0, env); if(NULL==jwindow) { fprintf(stderr, "Warning: NEWT X11 DisplayDispatch %p, Couldn't handle event %d for X11 window %p\n", |