unconst.
This commit is contained in:
parent
1175c43a12
commit
1d519e4625
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue