diff options
author | Sven Gothel <[email protected]> | 2012-06-16 05:33:45 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-06-16 05:33:45 +0200 |
commit | 29e70f215069643c740e1b251490aa9edd61d2cb (patch) | |
tree | 9c9c59c99f70607732789acbdd593ddf246129a1 | |
parent | 54d0ff131097a2cd9a91a0c1dd84deb8b1f7d0ac (diff) |
Adapt to GlueGen commit 1468286bf569a493e4fdb887d5f3732f88c8cec3 (IOUtil.createTempFile(..) change)
-rw-r--r-- | src/jogl/classes/jogamp/graph/font/typecast/TypecastFontConstructor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/graph/font/typecast/TypecastFontConstructor.java b/src/jogl/classes/jogamp/graph/font/typecast/TypecastFontConstructor.java index e8b62bdd2..0f762e79c 100644 --- a/src/jogl/classes/jogamp/graph/font/typecast/TypecastFontConstructor.java +++ b/src/jogl/classes/jogamp/graph/font/typecast/TypecastFontConstructor.java @@ -71,7 +71,7 @@ public class TypecastFontConstructor implements FontConstructor { int len=0; Font f = null; try { - tf = IOUtil.createTempFile( "joglfont", ".ttf", null); + tf = IOUtil.createTempFile( "jogl.font", ".ttf", false, null); len = IOUtil.copyURLConn2File(fconn, tf); if(len==0) { tf.delete(); |