[cairo-commit] pycairo/cairo pycairo-context.c,1.26,1.27

Steve Chaplin commit at pdx.freedesktop.org
Wed Apr 6 19:09:59 PDT 2005


Committed by: stevech1097

Update of /cvs/cairo/pycairo/cairo
In directory gabe:/tmp/cvs-serv16838/cairo

Modified Files:
	pycairo-context.c 
Log Message:
SC 2005/04/07

Index: pycairo-context.c
===================================================================
RCS file: /cvs/cairo/pycairo/cairo/pycairo-context.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- pycairo-context.c	6 Apr 2005 13:52:59 -0000	1.26
+++ pycairo-context.c	7 Apr 2005 02:09:57 -0000	1.27
@@ -262,7 +262,7 @@
 static PyObject *
 pycairo_text_path(PyCairoContext *self, PyObject *args)
 {
-    const unsigned char *utf8;
+    const char *utf8;
 
     if (!PyArg_ParseTuple(args, "s:Context.text_path", &utf8))
 	return NULL;
@@ -815,7 +815,7 @@
 static PyObject *
 pycairo_show_text(PyCairoContext *self, PyObject *args)
 {
-    const unsigned char *utf8;
+    const char *utf8;
 
     if (!PyArg_ParseTuple(args, "s:Context.show_text", &utf8))
 	return NULL;
@@ -844,7 +844,7 @@
 static PyObject *
 pycairo_text_extents(PyCairoContext *self, PyObject *args)
 {
-    const unsigned char *utf8;
+    const char *utf8;
     cairo_text_extents_t extents;
 
     if (!PyArg_ParseTuple(args, "s:Context.text_extents", &utf8))




More information about the cairo-commit mailing list