diff options
-rw-r--r-- | pyuno/source/module/pyuno_impl.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyuno/source/module/pyuno_impl.hxx b/pyuno/source/module/pyuno_impl.hxx index 1222bf30b333..805466fad1e0 100644 --- a/pyuno/source/module/pyuno_impl.hxx +++ b/pyuno/source/module/pyuno_impl.hxx @@ -66,14 +66,14 @@ inline char * PyStr_AsString(PyObject *object) return PyUnicode_AsUTF8(object); } -inline int PyStr_Check(PyObject *object) +inline bool PyStr_Check(PyObject *object) { return PyUnicode_Check(object); } // compatibility wrappers for Python non-Unicode string/buffer type // (PyBytes in 3, PyString in 2) -inline int PyStrBytes_Check(PyObject *object) +inline bool PyStrBytes_Check(PyObject *object) { return PyBytes_Check(object); } @@ -103,11 +103,11 @@ inline PyObject* PyStr_FromString(const char *string) return PyString_FromString(string); } -inline int PyStr_Check(PyObject *object) +inline bool PyStr_Check(PyObject *object) { return PyString_Check(object); } -inline int PyStrBytes_Check(PyObject *object) +inline bool PyStrBytes_Check(PyObject *object) { return PyString_Check(object); } |