aboutsummaryrefslogtreecommitdiffstats
path: root/make/config/nativewindow
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2009-11-11 18:58:31 +0100
committerMichael Bien <[email protected]>2009-11-11 18:58:31 +0100
commit1360f3839ec52a8da5420946781327cb859597c4 (patch)
tree375d0fb91a520c1cd15625242d928ab5bc226313 /make/config/nativewindow
parent1c73b8b7d9bdc6e060b1a81c3b92c998df1359e2 (diff)
refactoring: new struct accessor method naming conventions.
Diffstat (limited to 'make/config/nativewindow')
-rwxr-xr-xmake/config/nativewindow/jawt-CustomJavaCode.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/config/nativewindow/jawt-CustomJavaCode.java b/make/config/nativewindow/jawt-CustomJavaCode.java
index b92e5a983..87d08241b 100755
--- a/make/config/nativewindow/jawt-CustomJavaCode.java
+++ b/make/config/nativewindow/jawt-CustomJavaCode.java
@@ -12,7 +12,7 @@ public static JAWT getJAWT() {
AccessController.doPrivileged(new PrivilegedAction() {
public Object run() {
JAWT j = JAWT.create();
- j.version(JAWTFactory.JAWT_VERSION_1_4);
+ j.setVersion(JAWTFactory.JAWT_VERSION_1_4);
if (!JAWTFactory.JAWT_GetAWT(j)) {
throw new RuntimeException("Unable to initialize JAWT");
}