|
From: <eli...@us...> - 2008-04-13 18:13:31
|
Revision: 3018
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3018&view=rev
Author: elias_naur
Date: 2008-04-13 11:13:26 -0700 (Sun, 13 Apr 2008)
Log Message:
-----------
LinuxDisplay.java: Fixed missing return
Modified Paths:
--------------
trunk/LWJGL/src/java/org/lwjgl/opengl/LinuxDisplay.java
Modified: trunk/LWJGL/src/java/org/lwjgl/opengl/LinuxDisplay.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/opengl/LinuxDisplay.java 2008-04-13 18:11:38 UTC (rev 3017)
+++ trunk/LWJGL/src/java/org/lwjgl/opengl/LinuxDisplay.java 2008-04-13 18:13:26 UTC (rev 3018)
@@ -285,7 +285,7 @@
String error_msg = getErrorText(display, error_code);
throw new LWJGLException("X Error - disp: 0x" + Long.toHexString(error_display) + " serial: " + serial + " error: " + error_msg + " request_code: " + request_code + " minor_code: " + minor_code);
} else if (saved_error_handler != 0)
- callErrorHandler(saved_error_handler, display, event_ptr);
+ return callErrorHandler(saved_error_handler, display, event_ptr);
return 0;
}
private static native String getErrorText(long display, long error_code);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|