Update of /cvsroot/plplot/plplot/examples/java
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8940/examples/java
Modified Files:
x01.java
Log Message:
Fix boolean / int error in Java example 1.
Index: x01.java
===================================================================
RCS file: /cvsroot/plplot/plplot/examples/java/x01.java,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- x01.java 14 Feb 2006 19:01:58 -0000 1.29
+++ x01.java 6 Apr 2006 22:05:40 -0000 1.30
@@ -76,7 +76,7 @@
pls.init();
// Select the multi-stroke font.
- if (fontset)
+ if (fontset == 1)
pls.fontld( 1 );
else
pls.fontld( 0 );
|