This commit is contained in:
Martin v. Löwis 2006-02-27 23:10:11 +00:00
parent 1175c43a12
commit 1d519e4625

View File

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