mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-29 04:32:15 -05:00
Fix returning gtkwin_ptr from python api
This commit is contained in:
parent
dba9c42473
commit
494364d437
@ -88,8 +88,10 @@
|
|||||||
|
|
||||||
#undef PyUnicode_Check
|
#undef PyUnicode_Check
|
||||||
#undef PyUnicode_FromString
|
#undef PyUnicode_FromString
|
||||||
|
#undef PyUnicode_FromFormat
|
||||||
#define PyUnicode_Check PyString_Check
|
#define PyUnicode_Check PyString_Check
|
||||||
#define PyUnicode_AsFormat PyString_AsFormat
|
#define PyUnicode_AsFormat PyString_AsFormat
|
||||||
|
#define PyUnicode_FromFormat PyString_FromFormat
|
||||||
#define PyUnicode_FromString PyString_FromString
|
#define PyUnicode_FromString PyString_FromString
|
||||||
#define PyUnicode_AsUTF8 PyString_AsString
|
#define PyUnicode_AsUTF8 PyString_AsString
|
||||||
|
|
||||||
@ -1502,6 +1504,9 @@ Module_hexchat_get_info(PyObject *self, PyObject *args)
|
|||||||
Py_INCREF(Py_None);
|
Py_INCREF(Py_None);
|
||||||
return Py_None;
|
return Py_None;
|
||||||
}
|
}
|
||||||
|
if (strcmp (name, "gtkwin_ptr") == 0)
|
||||||
|
return PyUnicode_FromFormat("%p", info); /* format as pointer */
|
||||||
|
else
|
||||||
return PyUnicode_FromString(info);
|
return PyUnicode_FromString(info);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user