Kaydet (Commit) b9247d37 authored tarafından Jack Jansen's avatar Jack Jansen

Oops, forgot & in ParseTuple argument in ControlGetDataHandle.

üst 6dc2b57c
......@@ -1196,7 +1196,7 @@ static PyObject *CtlObj_SetControlDataHandle(_self, _args)
if (!PyArg_ParseTuple(_args, "hO&O&",
&inPart,
PyMac_GetOSType, &inTagName,
OptResObj_Convert, buffer))
OptResObj_Convert, &buffer))
return NULL;
_err = SetControlData(_self->ob_itself,
......
......@@ -343,7 +343,7 @@ Handle buffer;
if (!PyArg_ParseTuple(_args, "hO&O&",
&inPart,
PyMac_GetOSType, &inTagName,
OptResObj_Convert, buffer))
OptResObj_Convert, &buffer))
return NULL;
_err = SetControlData(_self->ob_itself,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment