diff options
author | Sven Gothel <[email protected]> | 2013-06-11 16:29:48 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-06-11 16:29:48 +0200 |
commit | 05eef46e33f41f5c234ffb1563fd8f641208fe85 (patch) | |
tree | 0d0c486a3a8fde2811874da726e11f170ac77a36 /src/jogl/classes/jogamp/graph | |
parent | ee3c6d807f24fafc6a79da4d60442f62f6065d39 (diff) |
Adapt to GlueGen commit 1a01dce6c42b398cdd68d405828774a3ab366456
Diffstat (limited to 'src/jogl/classes/jogamp/graph')
-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 0f762e79c..8479c08ca 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( "jogl.font", ".ttf", false, null); + tf = IOUtil.createTempFile( "jogl.font", ".ttf", false); len = IOUtil.copyURLConn2File(fconn, tf); if(len==0) { tf.delete(); |