This commit is contained in:
Martin v. Löwis 2006-02-27 23:10:11 +00:00
parent 1175c43a12
commit 1d519e4625
1 changed files with 2 additions and 2 deletions

View File

@ -2403,7 +2403,7 @@ Tktt_Repr(PyObject *self)
} }
static PyObject * static PyObject *
Tktt_GetAttr(PyObject *self, const char *name) Tktt_GetAttr(PyObject *self, char *name)
{ {
return Py_FindMethod(Tktt_methods, self, name); return Py_FindMethod(Tktt_methods, self, name);
} }
@ -2734,7 +2734,7 @@ Tkapp_Dealloc(PyObject *self)
} }
static PyObject * static PyObject *
Tkapp_GetAttr(PyObject *self, const char *name) Tkapp_GetAttr(PyObject *self, char *name)
{ {
return Py_FindMethod(Tkapp_methods, self, name); return Py_FindMethod(Tkapp_methods, self, name);
} }