]> Dogcows Code - chaz/openbox/commitdiff
put the *'s in the right place for pointers
authorDana Jansens <danakj@orodu.net>
Sat, 21 Dec 2002 14:57:07 +0000 (14:57 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 21 Dec 2002 14:57:07 +0000 (14:57 +0000)
otk_c/rect.c

index cf23b45ba0a117ce2ff4408103017b93587f3e6e..63911c8f3ca1eb6bccae01eff2ce8286f5dd87b2 100644 (file)
@@ -19,28 +19,28 @@ PyObject *OtkRect_New(int x, int y, int width, int height)
 
 
 
-static PyObject *otkrect_getx(OtkRect* self, PyObject* args)
+static PyObject *otkrect_getx(OtkRect *self, PyObject *args)
 {
   if (!PyArg_ParseTuple(args, ":getX"))
     return NULL;
   return PyInt_FromLong(self->x);
 }
 
-static PyObject *otkrect_gety(OtkRect* self, PyObject* args)
+static PyObject *otkrect_gety(OtkRect *self, PyObject *args)
 {
   if (!PyArg_ParseTuple(args, ":getY"))
     return NULL;
   return PyInt_FromLong(self->y);
 }
 
-static PyObject *otkrect_getwidth(OtkRect* self, PyObject* args)
+static PyObject *otkrect_getwidth(OtkRect *self, PyObject *args)
 {
   if (!PyArg_ParseTuple(args, ":getWidth"))
     return NULL;
   return PyInt_FromLong(self->width);
 }
 
-static PyObject *otkrect_getheight(OtkRect* self, PyObject* args)
+static PyObject *otkrect_getheight(OtkRect *self, PyObject *args)
 {
   if (!PyArg_ParseTuple(args, ":getHeight"))
     return NULL;
@@ -62,7 +62,7 @@ static PyMethodDef get_methods[] = {
 
 
 
-static void otkrect_dealloc(PyObjectself)
+static void otkrect_dealloc(PyObject *self)
 {
   PyObject_Del(self);
 }
This page took 0.022246 seconds and 4 git commands to generate.