diff options
author | Sven Gothel <[email protected]> | 2011-07-28 16:20:43 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-07-28 16:20:43 +0200 |
commit | 783f2ee31cd7026f5bb2bcd144e8cae75accda20 (patch) | |
tree | 111c35fcd23c45e27874e986b6a7ce869eb66c53 /src/nativewindow | |
parent | 8e8fd396c2a04837f5d25f45ed8231b114e26ae4 (diff) |
adapt to gluegen Platform change
Diffstat (limited to 'src/nativewindow')
-rw-r--r-- | src/nativewindow/classes/jogamp/nativewindow/NativeWindowFactoryImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nativewindow/classes/jogamp/nativewindow/NativeWindowFactoryImpl.java b/src/nativewindow/classes/jogamp/nativewindow/NativeWindowFactoryImpl.java index e3322ac45..d34d4e58f 100644 --- a/src/nativewindow/classes/jogamp/nativewindow/NativeWindowFactoryImpl.java +++ b/src/nativewindow/classes/jogamp/nativewindow/NativeWindowFactoryImpl.java @@ -88,7 +88,7 @@ public class NativeWindowFactoryImpl extends NativeWindowFactory { // Assume Linux, Solaris, etc. Should probably test for these explicitly. windowClassName = "jogamp.nativewindow.jawt.x11.X11JAWTWindow"; } else { - throw new IllegalArgumentException("OS " + Platform.getOS() + " not yet supported"); + throw new IllegalArgumentException("OS " + Platform.getOSName() + " not yet supported"); } nativeWindowConstructor = ReflectionUtil.getConstructor( |