[cairo-commit] cairo-java/test/snippets CairoSnippetsPDF.java, 1.4,
1.5
Jeffrey Morgan
commit at pdx.freedesktop.org
Mon May 2 18:40:42 PDT 2005
Committed by: kuzman
Update of /cvs/cairo/cairo-java/test/snippets
In directory gabe:/tmp/cvs-serv8826/test/snippets
Modified Files:
CairoSnippetsPDF.java
Log Message:
Renamed PdfSurface to PDFSurface
Index: CairoSnippetsPDF.java
===================================================================
RCS file: /cvs/cairo/cairo-java/test/snippets/CairoSnippetsPDF.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- CairoSnippetsPDF.java 3 May 2005 01:36:16 -0000 1.4
+++ CairoSnippetsPDF.java 3 May 2005 01:40:40 -0000 1.5
@@ -10,7 +10,7 @@
package snippets;
import org.freedesktop.cairo.Context;
-import org.freedesktop.cairo.PdfSurface;
+import org.freedesktop.cairo.PDFSurface;
/**
*/
@@ -28,7 +28,7 @@
public static void main(String[] args) throws Exception {
// initialize
Context cr = new Context();
- PdfSurface surface = new PdfSurface("./snippets.pdf", X_INCHES, Y_INCHES, X_PPI, Y_PPI);
+ PDFSurface surface = new PDFSurface("./snippets.pdf", X_INCHES, Y_INCHES, X_PPI, Y_PPI);
cr.setTargetSurface(surface);
// call the snippets
More information about the cairo-commit
mailing list