[cairo-commit] cairo-java/src/java/org/freedesktop/cairo Cairo.java, 1.7, 1.8 Status.java, 1.1, 1.2

Jeffrey Morgan commit at pdx.freedesktop.org
Sun Mar 13 08:37:00 PST 2005


Committed by: kuzman

Update of /cvs/cairo/cairo-java/src/java/org/freedesktop/cairo
In directory gabe:/tmp/cvs-serv2477/src/java/org/freedesktop/cairo

Modified Files:
	Cairo.java Status.java 
Log Message:
completed currentPath and added new status

Index: Cairo.java
===================================================================
RCS file: /cvs/cairo/cairo-java/src/java/org/freedesktop/cairo/Cairo.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Cairo.java	10 Mar 2005 19:38:33 -0000	1.7
+++ Cairo.java	13 Mar 2005 16:36:58 -0000	1.8
@@ -1009,7 +1009,6 @@
     }
 	
     private void move_to(double x, double y) {
-    	System.out.println("moveTo");
     	currentPath.moveTo(x, y);
     }
 

Index: Status.java
===================================================================
RCS file: /cvs/cairo/cairo-java/src/java/org/freedesktop/cairo/Status.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Status.java	23 Feb 2005 18:17:52 -0000	1.1
+++ Status.java	13 Mar 2005 16:36:58 -0000	1.2
@@ -30,9 +30,11 @@
     static final public Status NULL_POINTER = new Status (_NULL_POINTER);
     static final private int _INVALID_STRING = 8;
     static final public Status INVALID_STRING = new Status (_INVALID_STRING);
+    static final private int _INVALID_DATA_PATH = 9;
+    static final public Status INVALID_DATA_PATH = new Status (_INVALID_DATA_PATH);
     static final private Status[] theInterned = new Status[] {
         SUCCESS, NO_MEMORY, INVALID_RESTORE, INVALID_POP_GROUP, NO_CURRENT_POINT,
-        INVALID_MATRIX, NO_TARGET_SURFACE, NULL_POINTER, INVALID_STRING
+        INVALID_MATRIX, NO_TARGET_SURFACE, NULL_POINTER, INVALID_STRING, INVALID_DATA_PATH
     };
     static private java.util.Hashtable theInternedExtras;
     static final private Status theSacrificialOne = new Status (0);




More information about the cairo-commit mailing list